| 1234567891011121314151617 |
- import { post } from '@/utils/request';
- export const customerApi = {
- // cid详细信息real
- cidRealSingle: (params = {}) => post('/custom/search/real/single', params),
- // 真实用户列表all
- realCustomerListAll: (params = {}) => post('/custom/login/search/custom/list', params),
- // ibno详细信息
- pIbNoRealSingle: (params = {}) => post('/ib/search/ib/single', params),
- // 用户文件审核
- customFileApprove: (params = {}) => post('/custom/file/approve', params),
- // 反审核
- customFileApproveDe: (params = {}) => post('/custom/file/de/approve', params),
- // 根据条件查看拒绝列表-用于下拉和选择展示理由
- reasonsRefusalList: (params = {}) => post('/reasons/refusal/list', params),
- };
|