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 @@