From aa0d8f7b3d5b85f0b4f64e8b12e877777ac22a7e Mon Sep 17 00:00:00 2001 From: MoYi <1545929126@qq.com> Date: Fri, 8 Dec 2023 23:36:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=87=AA=E5=8A=A8=E4=B8=BB?= =?UTF-8?q?=E9=A2=98=E5=88=87=E6=8D=A2=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/AppPC.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/AppPC.vue b/src/views/AppPC.vue index 1ee63cc..1498fb8 100644 --- a/src/views/AppPC.vue +++ b/src/views/AppPC.vue @@ -301,7 +301,7 @@ const vantTheme = ref<"light" | "dark">("light"); const initTheme = () => { const now = new Date(); const hour = now.getHours(); - if (hour < 7 || hour > 16) { + if (hour < 7 || hour > 17) { toggleDark(true); vantTheme.value = "dark"; return;