ins-customer.js
1.23 KB
import { createApiObj } from './common'
const PROJECT_ROOT = '/ins-customer'
/*字典管理*/
export const API_CUSTOMER_MANAGE = createApiObj([
'/customer/getCusParamQuery', // 客户列表查询
'/customer/delCustomerByid', // 客户列表查询
'/customer/addCustomerAndCustomer', // 添加客户
'/customer/getCustomerByid',
'/customer/updCustomerAndCustomer', //修改客户
'/customerExport/exportCustomerList', // 导出
'/customerOther/getAllListInsuranceCompany',
'/customerOther/addCustomerLabel', //添加客户标签
'/customerOther/getAllListCustomerLabel', // 获取客户的全部标签
'/customerOther/delCustomerLabelByid', // 删除客户标签
'/customerOther/getAllListTypesInsurance', //获取险种
'/customerOther/addInsuranceCompany', //获取险种
'/customerOther/updInsuranceCompany', // 修改保险公司
'/customerOther/getInsuranceCompanyByid', // 获取保险公司id信息
'/customerOther/delInsuranceCompanyByid', // 删除保险公司
'/customerOther/delTypesInsuranceByid', // 删除险种
'/customerOther/getTypesInsuranceByid', // 获取险种id信息
'/customerOther/addTypesInsurance', // 新增险种
'/customerOther/updTypesInsurance', // 修改险种
], PROJECT_ROOT)