shikeying
2023-04-07 c192f834c4e092bc7c0f2722c343c25c1be619ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import request from '@/utils/request'
 
/*
 * @Author : liu.q [916000612@qq.com]
 * @Date : 2019-06-25 11:42
 * @Description :获取验证码
 */
export function getVerify(param) {
  return request({
    // url: globalConf.baseUrl + '/v1/base/web/getVerify',
    url: globalConf.baseUrl + '/captcha/jigsaw',
    method: 'get',
    params: param
  })
}
 
/*
 * @Author : liu.q [916000612@qq.com]
 * @Date : 2019-06-25 11:42
 * @Description :校验验证码
 */
export function checkVerify(param) {
  return request({
    url: globalConf.baseUrl + '/captcha/jigsaw_validate',
    method: 'post',
    params: param
  })
}