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.
|
const apiOther = {
|
|
/**
|
|
* 发送手机验证码
|
|
*/
|
|
sendMobileCode: (params) => {
|
|
return uni.$u.http.post("/mobile/get_verify_code", {
|
|
mobileNo: params.mobileNo, // 手机号码
|
|
});
|
|
},
|
|
};
|
|
|
|
export default apiOther;
|