You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
//客户管理详情 |
|
import { requestGet, requestTableList } from '@component/utils'; |
|
export const getDetail = (params) => { |
|
return requestGet(process.env.REACT_APP_BUSINESS_URL, 'insuranceOrgan/show', params); |
|
}; |
|
//客户详情保单列表 |
|
export const getPolicyPageList = (params) => { |
|
return requestTableList(process.env.REACT_APP_BUSINESS_URL, 'insuranceOrgan/policyPageList', params); |
|
}; |
|
//客户详情服务列表 |
|
export const getServicePageList = (params) => { |
|
return requestTableList(process.env.REACT_APP_BUSINESS_URL, 'insuranceOrgan/servicePageList', params); |
|
}; |
|
//客户详情风险列表 |
|
export const getRiskPageList = (params) => { |
|
return requestTableList(process.env.REACT_APP_BUSINESS_URL, 'insuranceOrgan/riskPageList', params); |
|
}; |
|
//客户详情隐患列表 |
|
export const getDangerPageList = (params) => { |
|
return requestTableList(process.env.REACT_APP_BUSINESS_URL, 'insuranceOrgan/dangerPageList', params); |
|
}; |
|
//客户详情理赔列表 |
|
export const getCompensatePageList = (params) => { |
|
return requestTableList(process.env.REACT_APP_BUSINESS_URL, 'insuranceOrgan/compensatePageList', params); |
|
};
|
|
|