1. 修复滑块验证码,存在失败的情况

2. 重新构建 demo 预览项目
This commit is contained in:
YunaiV
2022-11-11 20:02:11 +08:00
parent fb237423b8
commit 93b8a2b6c1
81 changed files with 17106 additions and 15029 deletions

View File

@ -32,29 +32,3 @@ export function 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
})
}