Files
2025-07-07 16:05:18 +08:00

33 lines
696 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
* 接口ID249869216
* 接口地址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 });
}