From 0ac1ec9ca19792aaec4839d7b3dd4a41fc28fd7f Mon Sep 17 00:00:00 2001 From: zhongzm Date: Fri, 20 Jun 2025 17:37:05 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=91=8A=E8=AD=A6=E6=97=A5=E6=9C=9F?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E5=BD=93=E6=9C=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/device/alerts/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/device/alerts/index.vue b/src/views/device/alerts/index.vue index 5d86479..6dbc2be 100644 --- a/src/views/device/alerts/index.vue +++ b/src/views/device/alerts/index.vue @@ -23,8 +23,8 @@ const getSiteList = async () => { // 日期选择器相关 const now = dayjs() -const startOfToday = now.startOf('day') -const dateRange = ref<[any, any]>([startOfToday, now]) +const startOfMonth = now.startOf('month') +const dateRange = ref<[any, any]>([startOfMonth, now]) // 告警相关 const activeMainTab = ref('Alerts')