Files
HTFX-CRM-Sales/services/customer/ib.ts
2025-07-07 16:05:18 +08:00

81 lines
1.2 KiB
TypeScript
Raw 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 queryIbParams = {
curr_page?: bigint;
page_size?: bigint;
/**
* 关键词搜索id,账号,邮箱,姓名)
*/
qcc_fuzzy_search?: string;
id?: bigint;
/**
* 邮箱
*/
email?: string;
/**
* 代表处
*/
org_name?: bigint;
/**
* 业务员
*/
salesman_name?: string;
/**
* 上级id
*/
superior_id?: bigint;
/**
* 上级
*/
superior_code?: string;
/**
* 上级姓名
*/
superior_name?: string;
/**
* IB用户组
*/
ib_user_group?: string;
/**
* 是否认证
*/
auth?: bigint;
/**
* 状态
*/
status?: bigint;
/**
* 手机
*/
phone?: string;
date_start?: string;
date_end?: string;
};
/**
* 查询IB列表
* GET /saleH5/customer/queryIBList
* 接口ID248613609
* 接口地址https://app.apifox.com/link/project/4728063/apis/api-248613609
*/
export function queryCustomerList(data: queryIbParams) {
return request({ url: '/api/saleH5/customer/queryIBList', method: 'GET', data });
}