fix:long类型修复

This commit is contained in:
陈淳
2023-03-30 13:42:57 +08:00
parent 6b2ef71296
commit ba220e9d55
5 changed files with 50 additions and 9 deletions

View File

@@ -65,4 +65,15 @@ export function logout() {
timeout: 20000
})
}
// 获取短信验证码
export function getCodePhone(phone) {
return request({
url: '/account/captcha-phone',
headers: {
isToken: false
},
method: 'post',
timeout: 20000,
data:{phone}
})
}