This commit is contained in:
2023-08-19 21:49:44 +08:00
6 changed files with 157 additions and 69 deletions

View File

@@ -21,13 +21,21 @@ export function getCode(data) {
export function logout() {
return request({
url: 'driver-api/tdSysUser/loginOut',
method: 'get',
method: 'get'
});
}
export function getInfo() {
return request({
url: 'driver-api/tdSysUser/info',
method: 'get',
url: 'driver-api/tdSysUser/queryUserMessage',
method: 'get'
});
}
export function bindSchool(data) {
return request({
url: 'driver-api/tdSysUser/bindSchool',
method: 'post',
data
});
}