fix:增加巡检任务查询条件

This commit is contained in:
2024-11-25 15:40:46 +08:00
parent e9ab4f4e31
commit 55a7b3ad6d
5 changed files with 76 additions and 36 deletions
+9
View File
@@ -141,4 +141,13 @@ export function getDetailsBySnapShotId(snapShotId) {
method: "get",
params: { snapShotId },
});
}
// 巡检任务下拉接口
export function getTaskList(params) {
return request({
url: "/xj/xjtask/taskDropDown",
method: "get",
params,
});
}
+9
View File
@@ -76,3 +76,12 @@ export function detailRoad(id) {
method: "get",
});
}
// 巡检任务下拉接口
export function getTaskList(params) {
return request({
url: "/xj/xjtask/taskDropDown",
method: "get",
params,
});
}