2022-08-06 00:57:46 +08:00

61 lines
954 B
JavaScript

import request from '@/utils/request'
// 登录方法
export function login(username, password, captchaVerification) {
const data = {
username,
password,
captchaVerification
}
return request({
url: '/system/auth/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'
})
}
// 获取验证码
export function getCaptcha(data) {
return request({
url: '/captcha/get',
headers: {
isToken: false,
isTenant: false
},
method: 'POST',
'data': data
})
}
// 验证验证码
export function checkCaptcha(data) {
return request({
url: '/captcha/check',
headers: {
isToken: false,
isTenant: false
},
method: 'POST',
'data': data
})
}