feat: 初始化
This commit is contained in:
81
services/customer/ib.ts
Normal file
81
services/customer/ib.ts
Normal file
@ -0,0 +1,81 @@
|
||||
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
|
||||
* 接口ID:248613609
|
||||
* 接口地址: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 });
|
||||
}
|
Reference in New Issue
Block a user