This commit is contained in:
2023-08-09 16:44:10 +08:00
parent 2cdb072ab8
commit ba59394115
100 changed files with 8965 additions and 307 deletions

View File

@@ -117,17 +117,16 @@ export function getDistributeRecord(param) {
// 查询跟踪记录
export function getFollowRecord(param) {
return request({
url: '/zs/clue/followrecord',
url: '/zs/followrecord/list',
method: 'get',
params: param
});
}
//
//查询咨询记录
export function getConsultRecord(param) {
return request({
url: '/zs/clue/consultrecord',
url: '/zs/consultrecord/list',
method: 'get',
params: param
});
@@ -192,3 +191,22 @@ export function updateAccept(data) {
data: data
});
}
//查询线索分发信息
export function getCluePlaceList(data) {
return request({
url: `/zs/clue/place/info`,
method: 'get',
params: data
});
}
//保存线索分发信息
export function saveCluePlace(data) {
return request({
url: `/zs/clue/place`,
method: 'post',
data: data
});
}