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;