feat: 初始化
This commit is contained in:
33
services/customer/mt.ts
Normal file
33
services/customer/mt.ts
Normal file
@ -0,0 +1,33 @@
|
||||
import { UserLanguage } from '@/utils/const';
|
||||
import { request } from '@/utils/request';
|
||||
|
||||
type queryMtParams = {
|
||||
|
||||
curr_page?: bigint;
|
||||
|
||||
page_size?: bigint;
|
||||
/**
|
||||
* 关键词搜索(id,账号,邮箱,姓名)
|
||||
*/
|
||||
qcc_fuzzy_search?: string;
|
||||
|
||||
user_code?: string;
|
||||
|
||||
mt4_login?: string;
|
||||
|
||||
mt4_server?: string;
|
||||
|
||||
mt4_group?: string;
|
||||
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* 查询MT账户统计
|
||||
* GET /saleH5/customer/queryMTAccount
|
||||
* 接口ID:249869216
|
||||
* 接口地址:https://app.apifox.com/link/project/4728063/apis/api-249869216
|
||||
*/
|
||||
export function queryList(data: queryMtParams) {
|
||||
return request({ url: '/api/saleH5/customer/queryMTAccount', method: 'GET', data });
|
||||
}
|
Reference in New Issue
Block a user