From 2ce4a69a98e0377d084f2437042f261a412585a2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=8B=E9=92=A6?= <360013221@qq.com>
Date: Thu, 15 Aug 2024 17:55:21 +0800
Subject: [PATCH] 2024-08-15
---
ruoyi-ui/src/api/MonthlyEquipment/index.js | 6 +++---
.../components/FormConfig/Proxy.vue | 2 +-
.../components/FormConfig/index.vue | 16 +++++++++++-----
.../Home/components/AMapContainer/data/lcz.json | 1 -
.../pages/Home/components/HomeFilter/index.vue | 15 ++++++++++++---
.../RoadAndEvents/utils/buttonEvent.js | 2 ++
.../Home/components/RoadAndEvents/utils/map.js | 16 ++++++++++------
.../pages/control/device/record/index.vue | 11 +++++++++--
.../AddControlEventInfoDialog/index.vue | 2 --
.../pages/control/event/event/index.vue | 6 ++++++
.../event/governanceAnalysis/tanaly/index.vue | 2 +-
.../statistic/components/Timefiltering/index.vue | 3 ---
.../smart/statisticalAnalysis/query/data.js | 4 ++--
.../statisticalAnalysis/query/dialogRecord.vue | 4 ++--
.../eventDetection/analysis/pile/charts.js | 2 +-
ruoyi-ui/src/views/equipment/eqlist/index.vue | 1 -
ruoyi-ui/src/views/event/event/workBench.vue | 1 -
.../views/event/strategy/event/autoControl.vue | 1 -
.../config/components/offlineDeviceModal.vue | 1 -
ruoyi-ui/src/views/workbench/config/index.vue | 1 -
ruoyi-ui/vue.config.js | 4 ++--
21 files changed, 62 insertions(+), 39 deletions(-)
diff --git a/ruoyi-ui/src/api/MonthlyEquipment/index.js b/ruoyi-ui/src/api/MonthlyEquipment/index.js
index ca2277b8..c2167e86 100644
--- a/ruoyi-ui/src/api/MonthlyEquipment/index.js
+++ b/ruoyi-ui/src/api/MonthlyEquipment/index.js
@@ -56,9 +56,9 @@ export function getSystemStatusExport(query) {
url += "&stakeMark=" +
query.stakeMark
}
- if(query.deviceStatus){
- url += "&deviceStatus=" +
- query.deviceStatus
+ if(query.deviceState){
+ url += "&deviceState=" +
+ query.deviceState
}
if(query.useState){
url += "&useState=" +
diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/Proxy.vue b/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/Proxy.vue
index 6a223d83..0701a028 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/Proxy.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/Proxy.vue
@@ -1,5 +1,5 @@
-
diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/index.vue b/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/index.vue
index 9a1f9acd..f8722190 100644
--- a/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/index.vue
+++ b/ruoyi-ui/src/views/JiHeExpressway/components/FormConfig/index.vue
@@ -2,11 +2,12 @@
-
+ :prop="item.type !== 'MultipleLabelItem' ? item.key : void 0">
updateValue(item, data)" />
+
@@ -237,14 +238,14 @@ export default {
`${item.options?.placeholder || `${item.label}不能为空`}`
)
);
-
+
const err = ruleMatch(value);
if (err) return callback(err);
callback();
},
- trigger: ["blur", "change"],
+ trigger: [],
},
];
else if (item.rules?.length)
@@ -261,7 +262,7 @@ export default {
callback();
},
- trigger: ["blur", "change"],
+ trigger: [],
},
];
},
@@ -278,6 +279,11 @@ export default {