From 1094e99e0f1a849af62b562b3c46f666daed56b9 Mon Sep 17 00:00:00 2001 From: hui <770260999@qq.com> Date: Thu, 25 Jan 2024 17:15:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=BF=E6=8D=A2stakeMarkId=E4=B8=BAstakeMark?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/Dialogs/Broadcast/index.vue | 10 ++--- .../Home/components/Dialogs/Camera/index.vue | 4 +- .../Dialogs/DrivingGuidance/index.vue | 6 +-- .../Dialogs/PerceiveEvent/index.vue | 2 +- .../Home/components/RoadAndEvents/index.vue | 4 +- .../components/RoadAndEvents/utils/data.json | 44 +++++++++---------- .../RoadAndEvents/utils/httpList.js | 10 ++--- .../pages/service/board/testData/device.js | 12 ++--- .../JiHeExpressway/testData/deviceList.js | 12 ++--- 9 files changed, 52 insertions(+), 52 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 88695933..5b88a15a 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 @@ -1,6 +1,6 @@ @@ -50,7 +50,7 @@ export default { data: { deviceName: "LH24", roadName: "G35济泽高速", - stakeMarkId: "k094+079", + stakeMark: "k094+079", direction: "1", organizationName: "山东高速济南发展公司", brand: "XXX厂家", @@ -67,7 +67,7 @@ export default { }, { label: '设备桩号', - key: "stakeMarkId", + key: "stakeMark", }, { label: '所属方向', @@ -103,7 +103,7 @@ export default { this.dialogData.organizationName = data.organizationName; }) - const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMarkId); + const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMark); console.log("%c [ roadInfo ]-103-「index.vue」", "font-size:15px; background:#36347c; color:#7a78c0;", roadInfo.roadName); if (roadInfo) this.data.roadName = roadInfo.roadName; diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue index 50b58493..9f98d139 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Camera/index.vue @@ -72,7 +72,7 @@ export default { }, { label: '设备桩号', - key: "stakeMarkId", + key: "stakeMark", }, { label: '设备方向', @@ -106,7 +106,7 @@ export default { this.data.organizationName = data.organizationName; }); - const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMarkId); + const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMark); if (roadInfo) this.data.roadName = roadInfo.roadName; } 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 0048f479..a2898749 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 @@ -1,7 +1,7 @@