You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.1 KiB
JavaScript
65 lines
1.1 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 登录方法
|
|
export function login(username, password, code, uuid, tenantName, captchaVerification,rememberMe) {
|
|
const data = {
|
|
username,
|
|
password,
|
|
code,
|
|
uuid,
|
|
tenantName,
|
|
captchaVerification,
|
|
rememberMe
|
|
}
|
|
return request({
|
|
url: '/admin-api/system/auth/login',
|
|
headers: {
|
|
isToken: false
|
|
},
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 注册方法
|
|
export function register(data) {
|
|
return request({
|
|
url: '/register',
|
|
headers: {
|
|
isToken: false
|
|
},
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 获取用户详细信息
|
|
export function getInfo() {
|
|
return request({
|
|
url: '/admin-api/system/auth/get-permission-info',
|
|
method: 'get',
|
|
params: {
|
|
clientType: 2
|
|
}
|
|
})
|
|
}
|
|
|
|
// 退出方法
|
|
export function logout() {
|
|
return request({
|
|
url: '/admin-api/system/auth/logout',
|
|
method: 'post'
|
|
})
|
|
}
|
|
|
|
// 获取验证码
|
|
export function getCodeImg() {
|
|
return request({
|
|
url: '/admin-api/system/captcha/isEnable',
|
|
headers: {
|
|
isToken: false
|
|
},
|
|
method: 'get',
|
|
timeout: 20000
|
|
})
|
|
} |