From 3dd951220c9e2c77ead179e6ed76ed78e4e0c818 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Fri, 22 May 2026 14:27:19 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E6=AD=A3=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E5=AE=8C=E6=88=90=E7=8A=B6=E6=80=81=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/pageHome/ph-daily-note-quest.vue | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/components/pageHome/ph-daily-note-quest.vue b/src/components/pageHome/ph-daily-note-quest.vue index 9bd3a6ea..c87c15bf 100644 --- a/src/components/pageHome/ph-daily-note-quest.vue +++ b/src/components/pageHome/ph-daily-note-quest.vue @@ -7,13 +7,7 @@
魔神任务 - - {{ - props.quest.is_finish_all_mainline && props.quest.is_finish_all_interchapter - ? "已完成" - : `未完成:${props.quest.list.length}` - }} - + {{ hasIncompleteQuests ? `未完成:${props.quest.list.length}` : "已完成" }}
(); const questList = computed>(() => props.quest.list); const hasIncompleteQuests = computed(() => { if (props.quest.is_finish_all_mainline && props.quest.is_finish_all_interchapter) return false; - return props.quest.list.length > 1; + return props.quest.list.length > 0; }); function getQuestClass(stat: TGApp.Game.DailyNote.ArchonStatusEnum): string {