You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
390 B
28 lines
390 B
export const post = (url,data)=>{
|
|
return uni.request({
|
|
url:url,
|
|
data:data,
|
|
method:'POST',
|
|
header:{
|
|
}
|
|
})
|
|
}
|
|
|
|
export const loginWeChat = (data)=>{
|
|
return uni.request({
|
|
url:"login/wechatlogin",
|
|
data:data,
|
|
method:'POST',
|
|
header:{},
|
|
}
|
|
);
|
|
}
|
|
|
|
export const getPhoneNumber = (data)=>{
|
|
return uni.request({
|
|
url : '',
|
|
data : data,
|
|
method: 'POST',
|
|
header: {},
|
|
});
|
|
}
|