From f70d875a462fdb80807eae2bd022d5a3173a6e05 Mon Sep 17 00:00:00 2001
From: quanyawei <401863037@qq.com>
Date: Thu, 01 Feb 2024 10:53:17 +0800
Subject: [PATCH] fix:断线监控
---
src/views/onlineRate/index.vue | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/views/onlineRate/index.vue b/src/views/onlineRate/index.vue
index a8d6d0a..4b07158 100644
--- a/src/views/onlineRate/index.vue
+++ b/src/views/onlineRate/index.vue
@@ -272,7 +272,8 @@
this.formInline.startTime = now.subtract(7, 'day').format('YYYY-MM-DD HH:mm') // ���������������������
} else if (newValue === '������') {
this.selectTime = []
- this.formInline.startTime = now.format('YYYY-MM-DD HH:mm')
+ console.log('000', dayjs().startOf('day').format('YYYY-MM-DD HH:mm'))
+ this.formInline.startTime = dayjs().startOf('day').format('YYYY-MM-DD HH:mm')
}
}
},
--
Gitblit v1.8.0