批量推送

This commit is contained in:
郭庆泰
2026-08-16 21:24:53 +08:00
parent 0c093076a4
commit ccfd03a6eb
55 changed files with 3772 additions and 577 deletions
+10
View File
@@ -18,4 +18,14 @@ export function getCaptcha() {
export function getRouters() {
return request({ url: '/getRouters', method: 'get' })
}
// 短信登录 - 发送验证码 (手机号必须已注册)
export function sendLoginSms(phone) {
return request({ url: '/business/auth/smsSendCode', method: 'post', data: { phone } })
}
// 短信登录 - 校验验证码并登录, 返回 res.data 含 token
export function smsLogin(data) {
return request({ url: '/business/auth/smsLogin', method: 'post', data })
}