diff --git a/ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/weaterData/index.vue b/ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/weaterData/index.vue index 6f9fd701..6eac93f5 100644 --- a/ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/weaterData/index.vue +++ b/ruoyi-ui/src/views/JiHeExpressway/pages/perception/meteorologyCheck/components/weatherInfoQuery/components/weaterData/index.vue @@ -72,15 +72,15 @@
下雨类型: {{ - data.rainfall == 0 + data.precipitationType == 0 ? "无降雨" - : data.rainfall == 1 + : data.precipitationType == 1 ? "雨" - : data.rainfall == 2 + : data.precipitationType == 2 ? "雪" - : data.rainfall == 3 + : data.precipitationType == 3 ? "毛毛雨" - : data.rainfall == 4 + : data.precipitationType == 4 ? "雨夹雪" : "-" }} @@ -96,17 +96,17 @@ {{ 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" ? "泥泞" : "-" }}