From 502f3a2382c2fc33e405f2121dc8e12513b33fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=85=B4=E7=90=B3?= <1911390090@qq.com> Date: Wed, 23 Apr 2025 17:17:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B0=94=E8=B1=A1=E6=A3=80=E6=B5=8B=E5=99=A8?= =?UTF-8?q?=20=E8=B7=AF=E9=9D=A2=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/weaterData/index.vue | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) 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" ? "泥泞" : "-" }}