self_mall_xcx/services/login/phone-register.js
2023-06-07 18:27:48 +08:00

21 lines
315 B
JavaScript

import {
request
} from '../_utils/request';
import {
setStorage,
getStorage
} from '~/utils/storage'
/** 发送验证码 */
export function sendPhoneCode(data) {
request({
url: `WeChatLogin/sendPhoneCode`,
method: 'POST',
data: data,
success: async function (res) {
},
});
}