Skip to content

Commit 20e61c1

Browse files
committed
修复滑块验证码,存在失败的情况
1 parent 57908da commit 20e61c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Verifition/api/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import request from './../utils/axios' // 组件内部封装的axios
99
export function reqGet(data) {
1010
return request({
1111
// url: '/captcha/get',
12-
url: '/admin-api/captcha/get', // 使用项目自定义的 /admin-api/ 前缀
12+
url: '/admin-api/system/captcha/get', // 使用项目自定义的 /admin-api/ 前缀
1313
method: 'post',
1414
data
1515
})
@@ -19,7 +19,7 @@ export function reqGet(data) {
1919
export function reqCheck(data) {
2020
return request({
2121
// url: '/captcha/check',
22-
url: '/admin-api/captcha/check', // 使用项目自定义的 /admin-api/ 前缀
22+
url: '/admin-api/system/captcha/check', // 使用项目自定义的 /admin-api/ 前缀
2323
method: 'post',
2424
data
2525
})

0 commit comments

Comments
 (0)