From b8600fe76fcd70564cd766c57d2d9b143bb81380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E9=92=A6?= <360013221@qq.com> Date: Thu, 1 Aug 2024 08:30:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/HeaderMenu/CustomMenu.vue | 5 + .../components/HeaderMenu/WarningList.vue | 4 +- .../components/DeviceParam.vue | 5 + .../components/DeviceControlDialog.vue | 2 +- .../Home/components/HomeTraffic/index.vue | 44 ++-- .../Home/components/HomeVector/index.vue | 5 +- .../components/HomeWeatherLayer/index.vue | 1 - .../pages/Home/components/HomeWord/index.vue | 1 - .../Home/components/RoadAndEvents/index.vue | 2 +- .../strategy/componentsAdd/taskEditDialog.vue | 4 +- .../Cards/DeviceControl/index.vue | 9 +- .../EditEventInformationDialog/index.vue | 102 ++++++--- .../AddControlEventInfoDialog/index.vue | 45 +++- .../dispatch/EventDispatchDialog/index.vue | 25 ++- .../EventDetailDialog/Carousel/index.vue | 15 +- .../pages/control/event/event/index.vue | 2 +- .../pages/control/event/plan/index.vue | 8 +- .../smart/manage/index.vue | 4 +- .../eventDetection/analysis/day/charts.js | 48 +--- .../eventDetection/analysis/day/chartsv1.js | 210 ++++++++++++++++++ .../eventDetection/statistics/index.vue | 6 +- .../trafficFlow/analysis/flow/charts.js | 24 +- .../trafficFlow/analysis/flow/chartsv1.js | 172 ++++++++++++++ .../utils/enum_event/PresetFormItems.js | 93 ++++++-- .../JiHeExpressway/utils/enum_event/data.js | 85 +++---- ruoyi-ui/vue.config.js | 4 +- 26 files changed, 716 insertions(+), 209 deletions(-) create mode 100644 ruoyi-ui/src/views/JiHeExpressway/pages/perception/eventDetection/analysis/day/chartsv1.js create mode 100644 ruoyi-ui/src/views/JiHeExpressway/pages/perception/trafficFlow/analysis/flow/chartsv1.js diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/CustomMenu.vue b/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/CustomMenu.vue index 39ecc731..3b806b4f 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/CustomMenu.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/CustomMenu.vue @@ -92,6 +92,11 @@ export default { } else if(node.title==='桥梁监测'){ this.activeIndex = key window.open('http://iot.sdhscloud.com/home?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MTc1MSwidWlkIjoiM2M2NTZjOGUtMzgwZC0xMWVmLWFhNmItYmVhNGE2MDZhMzE2IiwidXNlcm5hbWUiOiJKSFpIR1MiLCJuaWNrbmFtZSI6Ilx1NmQ0ZVx1ODNjZlx1NjY3YVx1NjE2N1x1OWFkOFx1OTAxZiIsImVtYWlsIjoiMjU4NTQwMjg0MEBxcS5jb20iLCJ0ZWwiOiIiLCJpc19zdXBlcnVzZXIiOmZhbHNlLCJpc19tYXN0ZXIiOmZhbHNlLCJpc19hY3RpdmUiOnRydWUsInRlbmFudF9pZCI6NDUsImF0dHJzIjp7Imdyb3VwIjoiIn0sImhhc3VyYSI6eyJ4LWhhc3VyYS11c2VyLWlkIjoiM2M2NTZjOGUtMzgwZC0xMWVmLWFhNmItYmVhNGE2MDZhMzE2IiwieC1oYXN1cmEtdGVuYW50Ijo0NSwieC1oYXN1cmEtYWN0aXZlIjp0cnVlLCJ4LWhhc3VyYS1tYXN0ZXIiOmZhbHNlLCJ4LWhhc3VyYS1yb2xlX2lkIjo1MjcsIngtaGFzdXJhLWFwcF9pZCI6NTIsIngtaGFzdXJhLXNlcnZpY2VfaWQiOjQsIngtaGFzdXJhLXN1cGVydXNlciI6ZmFsc2V9LCJhcHBfaWQiOjUyLCJyb2xlX2lkIjo1MjcsInNlcnZpY2VfaWQiOjQsImNsaWVudF9pZCI6IjA1ZTI1NzU4LTBhYTQtMTFlYS1iYTM0LTAyNDJhYzEwMDExZiIsImV4cCI6NDg3MzUxMzk1M30.JR5dwFCmNfaDFkSISOF5ZhRyPBulzDwG1bg4BA-Jqog') + } else if(node.title==='数字收费站'){ + this.activeIndex = key + getConfigKey("digitalTollStation").then((response) => { + window.open(response.msg===''?'https://10.0.86.63:9000/s?loadType=auto&group=15ai1k13748d&runType=box':response.msg); + }) } else if (this.$route.path != node.path){ this.$router.push(node.path); } diff --git a/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/WarningList.vue b/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/WarningList.vue index 5dd25411..ffac8b9c 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/WarningList.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/components/HeaderMenu/WarningList.vue @@ -7,7 +7,7 @@
- +