Browse Source

交调接口优化

wangqin
zhoule 8 months ago
parent
commit
8ec1c75043
  1. 26
      ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Intermodulation/index.vue
  2. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/RoadAndEvents/utils/httpList.js

26
ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/Dialogs/Intermodulation/index.vue

@ -9,18 +9,10 @@
</ElTabPane>
<ElTabPane label="设备参数" name="second">
<div class="content-second" style="height: 185px">
<RadioGroup
v-model="roadType"
:options="roadTypeList"
@input="changeRadio"
/>
<RadioGroup v-model="roadType" :options="roadTypeList" @input="changeRadio" />
<span>当前车流量: {{ carNum }}</span>
<LineChartForTraffic
style="flex: 1"
v-if="isShowCar && activeName === 'second'"
:xData="xData"
:yData="yData"
/>
<LineChartForTraffic style="flex: 1" v-if="isShowCar && activeName === 'second'" :xData="xData"
:yData="yData" />
</div>
</ElTabPane>
<ElTabPane label="在线率统计" name="third">
@ -148,13 +140,14 @@ export default {
// this.dialogData.brand = data.brand;
// })
if (this.dialogData.iotDeviceId) {
this.getPropertiesHistory(this.dialogData.iotDeviceId);
}
const roadInfo = await getRoadInfoByStakeMark(this.dialogData.stakeMark);
if (roadInfo) this.data.roadName = roadInfo.roadName;
if (this.dialogData.iotDeviceId) {
this.getPropertiesHistory(this.dialogData.iotDeviceId);
}
},
methods: {
changeRadio(value) {
@ -165,12 +158,9 @@ export default {
} else {
this.yData = this.hzYData;
}
// console.log('xdata', this.xData);
// console.log('ydata', this.hzYData);
// console.log('rdata', this.jnYData);
setTimeout(() => {
this.isShowCar = true;
}, 1000);
}, 0);
},
getPropertiesHistory(deviceId) {
this.xData = [];

2
ruoyi-ui/src/views/JiHeExpressway/pages/Home/components/RoadAndEvents/utils/httpList.js

@ -121,7 +121,7 @@ export function getRoadInfoByStakeMark(stakeMark) {
url: `/business/stakeMark/query`,
method: "get",
params: {
id: stakeMark,
stakeMark: stakeMark,
direction: 1,
},
})

Loading…
Cancel
Save