fix:养护通知单页面新增

This commit is contained in:
2024-11-26 15:04:35 +08:00
parent 423f2ff262
commit 6f4fa44d72
4 changed files with 984 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import request from "@/utils/request";
// 路段下拉数据
export function getSegment() {
return request({
url: "/api/v2/segment/selectList",
method: "post",
});
}
// 查询列表病害类型
export function getDefectList(params) {
return request({
url: "/bigscreen/v2/getDefectTypesDrowDown",
method: "get",
params,
});
}
// 病害状态下拉类型
export function getDefectStatus() {
return request({
url: "/metadata/defectState",
method: "get",
});
}