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
});
}

View File

@@ -3,16 +3,16 @@ import request from '@/utils/request'
// 查询报名点成交登记列表
export function listSign(query) {
return request({
url: '/zs/officesign/list',
url: '/zs/placeSign/list',
method: 'get',
params: query
})
}
// 查询报名点成交登记详细
export function getSign(officesignId) {
export function getSign(placeSignId) {
return request({
url: '/zs/officesign/' + officesignId,
url: '/zs/placeSign/' + placeSignId,
method: 'get'
})
}
@@ -20,7 +20,7 @@ export function getSign(officesignId) {
// 新增报名点成交登记
export function addSign(data) {
return request({
url: '/zs/officesign',
url: '/zs/placeSign',
method: 'post',
data: data
})
@@ -29,16 +29,16 @@ export function addSign(data) {
// 修改报名点成交登记
export function updateSign(data) {
return request({
url: '/zs/officesign',
url: '/zs/placeSign',
method: 'put',
data: data
})
}
// 删除报名点成交登记
export function delSign(officesignId) {
export function delSign(placeSignId) {
return request({
url: '/zs/officesign/' + officesignId,
url: '/zs/placeSign/' + placeSignId,
method: 'delete'
})
}
@@ -46,7 +46,7 @@ export function delSign(officesignId) {
//审核登记
export function checkSign(data) {
return request({
url: '/zs/officesign/check',
url: '/zs/placeSign/check',
method: 'put',
data: data
})