From bb4eb0d83339fe49290538132d817b58066aa284 Mon Sep 17 00:00:00 2001 From: cshaptx4869 <994774638@qq.com> Date: Mon, 25 Mar 2024 18:15:50 +0800 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20:bug:=20=E4=BF=AE=E5=A4=8Desl?= =?UTF-8?q?int=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/index.vue b/src/views/dashboard/index.vue index e751a64..fec2eda 100644 --- a/src/views/dashboard/index.vue +++ b/src/views/dashboard/index.vue @@ -214,7 +214,7 @@ const greetings = computed(() => { return "下午好," + userStore.user.nickname + "!"; } else if (hours >= 18 && hours < 24) { return "晚上好," + userStore.user.nickname + "!"; - } else if (hours >= 0 && hours < 6) { + } else { return "偷偷向银河要了一把碎星,只等你闭上眼睛撒入你的梦中,晚安🌛!"; } });