fix:大屏联调接口,待验证完善

This commit is contained in:
2024-11-18 13:49:59 +08:00
parent 13c6607cbd
commit 1590e2acc6
7 changed files with 564 additions and 87 deletions
+10 -1
View File
@@ -35,7 +35,7 @@ export function roadToday(query) {
});
}
// 今日巡查弹窗
// 今日巡查病害弹窗
export function roadTodayDetail(query) {
return request({
url: "/bigscreen/v2/getInspectionDetailInfo",
@@ -90,6 +90,15 @@ export function getMileage(query) {
});
}
// 获取巡查里程弹窗数据
export function getMileageDetail(query) {
return request({
url: "/bigscreen/v2/getTaskDetailInfo",
method: "get",
params: query,
});
}
// 获取巡检车辆数据
export function getCarList(query) {
return request({
+9 -1
View File
@@ -2,7 +2,7 @@
* @Author: SunTao 328867980@qq.com
* @Date: 2024-10-24 15:03:28
* @LastEditors: SunTao 328867980@qq.com
* @LastEditTime: 2024-11-15 16:13:41
* @LastEditTime: 2024-11-18 10:09:30
* @FilePath: \znxjxt-ui\src\api\xj\screen\index.js
* @Description: 大屏首页接口
*/
@@ -113,3 +113,11 @@ export function getRoadListTypes() {
method: "post",
});
}
// 获取病害类型筛选级联下拉
export function getDefectTypes() {
return request({
url: "/bigscreen/v2/getDefectTypesDrowDown",
method: "get",
});
}