1123提交

This commit is contained in:
fz
2023-11-23 14:35:50 +08:00
parent 49b1676825
commit 8533c355e1
20 changed files with 557 additions and 359 deletions
+20
View File
@@ -73,4 +73,24 @@ export function sendEidtoken(data) {
method: 'post',
data: data
})
}
// 获取手机验证码
export function sendCode(data) {
return request({
'url': '/weChatUser/sendCode',
method: 'get',
params:data
})
}
// 注册方法
export function wxregister(data) {
return request({
url: '/weChatUser/registerUser',
headers: {
isToken: false
},
method: 'post',
data: data
})
}