Skip to content

Commit

Permalink
update: close secret.
Browse files Browse the repository at this point in the history
  • Loading branch information
Horbin-Magician committed May 23, 2024
1 parent 9740c02 commit 7b59fc3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion front-end/src/pages/SecretPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@
// 根据日期判断提示词
let type_words = start_words;
if(formattedDate == '20240415') type_words = start_words_first;
else if(hour >= 0 && hour < 7) {
else if (parseInt(formattedDate) > 20240523) {
type_words = "秘密树洞暂时关停啦~";
forbid.value = true;
} else if(hour >= 0 && hour < 7) {
type_words = greetings[0];
forbid.value = true;
} else if(hour >= 7 && hour < 11) type_words = greetings[1] + '@' + start_words;
Expand Down

0 comments on commit 7b59fc3

Please sign in to comment.