项目详情和客户编辑接口对接

This commit is contained in:
liu.xiaofeng@ebiz-digits.com
2024-01-08 21:15:44 +08:00
parent 2328efe212
commit a5431a8ca9
3 changed files with 334 additions and 141 deletions

View File

@@ -54,5 +54,38 @@ export function getGBCprojectlistByYear(data) {
})
}
// 查询项目下的客户列表
export function getGBCappntlist(data) {
return request({
url: getUrl('/sale/gbc/appnt/list', 1),
method: 'post',
data
})
}
// 查询项目下的客户列表
export function getGBCappntDetail(data) {
return request({
url: getUrl('/sale/gbc/appnt/detail', 1),
method: 'post',
data
})
}
// 保存客户类型
export function getGBCappntTypeSave(data) {
return request({
url: getUrl('/sale/gbc/appnt/type/save', 1),
method: 'post',
data
})
}
// 保存客户沟通记录
export function getGBCappntConnectSave(data) {
return request({
url: getUrl('/sale/gbc/appnt/connect/save', 1),
method: 'post',
data
})
}