合并代码更改可以正常启动

This commit is contained in:
lip
2025-11-03 12:55:41 +08:00
parent ec01a81c64
commit 22cb414232
6 changed files with 56 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
/*
* @Date: 2025-10-31 11:06:15
* @LastEditors: shirlwang
* @LastEditTime: 2025-11-03 12:26:41
* @LastEditors: lip
* @LastEditTime: 2025-11-03 12:51:45
*/
import request from '@/utilsRc/request'
@@ -16,3 +16,35 @@ export function login(data) {
}
})
}
export function smsLogin(data) {
return request({
method: 'post',
url: '/personnel/personBaseInfo/loginGrAndQy',
data,
headers: {
isToken: false
}
})
}
export function wechatLogin(data) {
return request({
method: 'post',
url: '/personnel/personBaseInfo/loginGrAndQy',
data,
headers: {
isToken: false
}
})
}
export function register(data) {
return request({
method: 'post',
url: '/personnel/personBaseInfo/loginGrAndQy',
data,
headers: {
isToken: false
}
})
}