mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-13 10:35:07 +08:00
feat: uniapp 适配aj-captcha
This commit is contained in:
@ -1,47 +1,60 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 登录方法
|
||||
export function login(username, password, code, uuid) {
|
||||
const data = {
|
||||
username,
|
||||
password,
|
||||
code,
|
||||
uuid
|
||||
}
|
||||
return request({
|
||||
url: '/system/auth/login',
|
||||
headers: {
|
||||
isToken: false
|
||||
},
|
||||
'method': 'post',
|
||||
'data': data
|
||||
})
|
||||
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'
|
||||
})
|
||||
return request({
|
||||
url: '/system/auth/get-permission-info',
|
||||
'method': 'GET'
|
||||
})
|
||||
}
|
||||
|
||||
// 退出方法
|
||||
export function logout() {
|
||||
return request({
|
||||
url: '/system/auth/logout',
|
||||
'method': 'post'
|
||||
})
|
||||
return request({
|
||||
url: '/system/auth/logout',
|
||||
'method': 'POST'
|
||||
})
|
||||
}
|
||||
|
||||
// 获取验证码
|
||||
export function getCodeImg() {
|
||||
return request({
|
||||
url: '/system/captcha/get-image',
|
||||
headers: {
|
||||
isToken: false
|
||||
},
|
||||
method: 'get',
|
||||
timeout: 20000
|
||||
})
|
||||
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
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user