You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import request from '@/utils/request'
|
|
|
|
//获取验证图片
|
|
export function reqGet(data) {
|
|
return request({
|
|
url: '/captcha/get',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|
|
//滑动或者点选验证
|
|
export function reqCheck(data) {
|
|
return request({
|
|
url: '/captcha/check',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|