客户档案的合同添加、复制健康调查链接

This commit is contained in:
xiezhijun
2021-02-01 19:13:41 +08:00
parent f3a4fa40a8
commit e3d8a9fa12
32 changed files with 621 additions and 1102 deletions

View File

@ -68,3 +68,12 @@ export function getCustomerPhysicalSignsByCusId(id) {
method: "get"
});
}
// 删除客户健康评估信息或体征信息
export function delCustomerHealthy(id) {
return request({
url: "/custom/customer/delCustomerHealthy/" + id,
method: "get"
});
}

View File

@ -34,3 +34,12 @@ export function addCustomerHealthy(data) {
data: data
})
}
// 根据加密客户ID获取对应客户信息
export function getCustomerBaseMessage(id) {
return request({
url: '/investigate/getCustomerBaseMessage/' + id,
method: 'get'
})
}