You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
471 B
29 lines
471 B
2 months ago
|
import request from '@/utils/request'
|
||
|
|
||
|
// 登录方法
|
||
|
export function login(data) {
|
||
|
return request({
|
||
|
url: '/system/auth/app_login',
|
||
|
headers: {
|
||
|
isToken: false
|
||
|
},
|
||
|
'method': 'POST',
|
||
|
'data': data
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 获取用户详细信息
|
||
|
export function getInfo() {
|
||
|
return request({
|
||
|
url: '/system/auth/get-permission-info',
|
||
|
'method': 'GET'
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// 退出方法
|
||
|
export function logout() {
|
||
|
return request({
|
||
|
url: '/system/auth/logout',
|
||
|
'method': 'POST'
|
||
|
})
|
||
|
}
|