From 83e3eb9716bbe6277f30853a771e9cc44f186169 Mon Sep 17 00:00:00 2001 From: qingzhengli <1204552371@qq.com> Date: Wed, 20 Mar 2024 11:16:16 +0800 Subject: [PATCH 01/11] =?UTF-8?q?fix=20=E8=AF=AD=E9=9F=B3=E5=B9=BF?= =?UTF-8?q?=E6=92=AD=E5=BC=B9=E7=AA=97bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/Home/components/Dialogs/Broadcast/index.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue index a1b2e6a1..d770c1a9 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Broadcast/index.vue @@ -39,8 +39,10 @@ import Button from "@screen/components/Buttons/Button.vue"; import Descriptions from "@screen/components/Descriptions.vue"; import BroadcastReleases from "./components/BroadcastReleases.vue"; import Video from "@screen/components/Video"; -import { DeviceTypeEnum } from "@screen/utils/enum.js"; - +const DeviceTypeEnum = { + 0: "异常", + 1: "正常", +}; import { getRoadInfoByStakeMark, getOrganizationName, From 91a92aeb68ea7358067333bf94f3b7753b73493a Mon Sep 17 00:00:00 2001 From: zhangzhang <1747194829@qq.com> Date: Wed, 20 Mar 2024 11:32:08 +0800 Subject: [PATCH 02/11] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BC=9A=E8=AE=AEbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Dialogs/DrivingGuidance/index.vue | 3 +- .../Dialogs/PerceiveEvent/index.vue | 119 +++++++++++------- .../src/views/JiHeExpressway/utils/enum.js | 4 + 3 files changed, 78 insertions(+), 48 deletions(-) diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue index f4b4479b..1fa6158b 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/DrivingGuidance/index.vue @@ -91,7 +91,7 @@ export default { }, { label: "设备厂商", - key: "brand", + key: "manufacturer", }, { label: "工作模式", @@ -140,6 +140,7 @@ export default { if (roadInfo) this.data.roadName = roadInfo.roadName; }, methods: { + handleClickTabs() {}, requestURL(functionId = 52, options = {}) { return new Promise((resolve, reject) => { request diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/PerceiveEvent/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/PerceiveEvent/index.vue index 76bc1c34..2ece670a 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/PerceiveEvent/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/PerceiveEvent/index.vue @@ -3,17 +3,36 @@