客户档案的合同添加、复制健康调查链接
This commit is contained in:
@ -68,3 +68,12 @@ export function getCustomerPhysicalSignsByCusId(id) {
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
// 删除客户健康评估信息或体征信息
|
||||
export function delCustomerHealthy(id) {
|
||||
return request({
|
||||
url: "/custom/customer/delCustomerHealthy/" + id,
|
||||
method: "get"
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -34,3 +34,12 @@ export function addCustomerHealthy(data) {
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 根据加密客户ID获取对应客户信息
|
||||
export function getCustomerBaseMessage(id) {
|
||||
return request({
|
||||
url: '/investigate/getCustomerBaseMessage/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user