feat: 初始化

This commit is contained in:
George
2025-07-07 16:05:18 +08:00
commit c169958240
986 changed files with 132574 additions and 0 deletions

11
services/audit/goldIn.ts Normal file
View File

@ -0,0 +1,11 @@
import { request } from '@/utils/request';
/**
* 查询客户入金审核记录
* GET /saleH5/audit/queryGoldInList
* 接口ID248660695
* 接口地址https://app.apifox.com/link/project/4728063/apis/api-248660695
*/
export function queryList(data: {}) {
return request({ url: '/api/saleH5/audit/queryGoldInList', method: 'GET', data });
}

11
services/audit/goldOut.ts Normal file
View File

@ -0,0 +1,11 @@
import { request } from '@/utils/request';
/**
* 查询客户出金审核记录
* GET /saleH5/audit/queryGoldOutList
* 接口ID248673243
* 接口地址https://app.apifox.com/link/project/4728063/apis/api-248673243
*/
export function queryList(data: {}) {
return request({ url: '/api/saleH5/audit/queryGoldOutList', method: 'GET', data });
}

View File

@ -0,0 +1,11 @@
import { request } from '@/utils/request';
/**
* 查询积分审核记录
* GET /saleH5/audit/queryIntegralList
* 接口ID248747213
* 接口地址https://app.apifox.com/link/project/4728063/apis/api-248747213
*/
export function queryList(data: {}) {
return request({ url: '/api/saleH5/audit/queryIntegralList', method: 'GET', data });
}

View File

@ -0,0 +1,32 @@
import { request } from '@/utils/request';
type queryParams = {
curr_page?: bigint;
page_size?: bigint;
/**
* 关键词搜索id,账号,邮箱,姓名)
*/
qcc_fuzzy_search?: string;
user_code?: string;
mt4_login?: string;
mt4_server?: string;
mt4_group?: string;
};
/**
* 查询客户入金审核记录
* GET /saleH5/audit/queryGoldInList
* 接口ID248660695
* 接口地址https://app.apifox.com/link/project/4728063/apis/api-248660695
*/
export function queryList(data: queryParams) {
return request({ url: '/api/saleH5/audit/querySaleFundOut', method: 'GET', data });
}