Browse Source

气象检测器 路面状态

develop
王兴琳 2 months ago
parent
commit
65a32f5414
  1. 13
      ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery2/components/weaterData/index.vue

13
ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery2/components/weaterData/index.vue

@ -75,18 +75,19 @@
<span class="label">路面状态</span> <span class="label">路面状态</span>
<span class="text">{{ <span class="text">{{
data.remoteRoadSurfaceStatus == "00" data.remoteRoadSurfaceStatus == "00"
? "干燥" ? "干燥"
: data.rainfall == "01" : data.remoteRoadSurfaceStatus == "01"
? "潮湿" ? "潮湿"
: data.rainfall == "02" : data.remoteRoadSurfaceStatus == "02"
? "积水" ? "积水"
: data.rainfall == "03" : data.remoteRoadSurfaceStatus == "03"
? "结冰" ? "结冰"
: data.rainfall == "04" : data.remoteRoadSurfaceStatus == "04"
? "积雪" ? "积雪"
: data.rainfall == "05" : data.remoteRoadSurfaceStatus == "05"
? "冰水混合物" ? "冰水混合物"
: data.rainfall == "06" : data.remoteRoadSurfaceStatus == "06"
? "泥泞" ? "泥泞"
: "-" : "-"
}}</span> }}</span>

Loading…
Cancel
Save