This commit is contained in:
2023-04-11 18:36:41 +08:00
parent 1fd8a381ea
commit f6225b2afb
51 changed files with 5066 additions and 193 deletions

View File

@@ -9,6 +9,15 @@ export function getClueList(query) {
});
}
// 查询线索列表
export function getClueInfo(id) {
return request({
url: '/zs/clue/' + id,
method: 'get',
});
}
// 新增线索
export function addClue(data) {
return request({
@@ -39,8 +48,8 @@ export function deleteClue(data) {
export function exportData(query) {
return request({
url: '/zs/clue/export',
method: 'get',
params: query
method: 'post',
data: query
});
}