feat: uniapp 适配aj-captcha

This commit is contained in:
xingyu4j
2022-08-06 00:57:46 +08:00
parent af2b1eb25f
commit baf5d87d32
13 changed files with 1896 additions and 201 deletions

View File

@ -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
})
}

View File

@ -9,7 +9,7 @@ export function updateUserPwd(oldPassword, newPassword) {
}
return request({
url: '/system/user/profile/update-password',
method: 'put',
method: 'PUT',
params: data
})
}
@ -18,7 +18,7 @@ export function updateUserPwd(oldPassword, newPassword) {
export function getUserProfile() {
return request({
url: '/system/user/profile/get',
method: 'get'
method: 'GET'
})
}
@ -26,7 +26,7 @@ export function getUserProfile() {
export function updateUserProfile(data) {
return request({
url: '/system/user/profile/update',
method: 'put',
method: 'PUT',
data: data
})
}
@ -35,7 +35,7 @@ export function updateUserProfile(data) {
export function uploadAvatar(data) {
return upload({
url: '/system/user/profile/update-avatar',
method: 'put',
method: 'PUT',
name: data.name,
filePath: data.filePath
})