From b82c1f5e2c6daeede03f6fcf7c91ae66348d97e3 Mon Sep 17 00:00:00 2001 From: guoshipeng <3194674006@qq.com> Date: Thu, 11 May 2023 16:03:21 +0800 Subject: [PATCH] 1、道路尘负荷分析尘负荷值修改 2、6参设定修改 --- src/components/Wind/Map.vue | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/src/components/Wind/Map.vue b/src/components/Wind/Map.vue index 0507a4c..96f5bdc 100644 --- a/src/components/Wind/Map.vue +++ b/src/components/Wind/Map.vue @@ -669,7 +669,7 @@ // this.dateFormat = currentDate.toString() const aData = new Date() const month = aData.getMonth() < 9 ? '0' + (aData.getMonth() + 1) : aData.getMonth() + 1 - const date = aData.getDate() + const date = aData.getDate() < 10 ? '0' + aData.getDate() : aData.getDate() const hour = aData.getHours() const currentDate = aData.getFullYear() + '-' + month + '-' + date + ' ' + hour + ':00' this.dateFormat = currentDate.toString() @@ -1491,7 +1491,6 @@ this.times = 300 }, 100) } - this.currentHour(); }, 1000) }, // ��������������������� -- Gitblit v1.8.0