10.10综合交易所原始源码-管理后台
admin
2026-01-06 a3cc41349752d6fb067df2a58e4e4b723a915f21
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * 此处可直接引用自己项目封装好的 axios 配合后端联调
 */
 
import httpRequest from '@/utils/httpRequest'
 
// 获取验证图片  以及token
export function reqGet (data) {
  return httpRequest({
    url: httpRequest.adornUrl('/captcha/get'),
    method: 'post',
    data
  })
}
 
// 滑动或者点选验证
export function reqCheck (data) {
  return httpRequest({
    url: httpRequest.adornUrl('/captcha/check'),
    method: 'post',
    data
  })
}