From a8694104a9dfcf8d63d26723ae9ac459817e99db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9B=AE=E6=A3=83?= Date: Thu, 27 Mar 2025 15:53:01 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E6=9F=A5=E8=AF=A2=E6=97=B6?= =?UTF-8?q?=E9=87=8D=E7=BD=AE=E9=80=89=E4=B8=AD=E6=88=90=E5=B0=B1=E7=B3=BB?= =?UTF-8?q?=E5=88=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/userAchi/tua-achi-list.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/userAchi/tua-achi-list.vue b/src/components/userAchi/tua-achi-list.vue index ae9d9aed..5ebba8c9 100644 --- a/src/components/userAchi/tua-achi-list.vue +++ b/src/components/userAchi/tua-achi-list.vue @@ -82,11 +82,13 @@ async function searchAchi(): Promise { achievements.value = await TSUserAchi.searchAchi(props.uid, props.search); if (achievements.value.length > 0) { showSnackbar.success(`成功获取${achievements.value.length}条成就`); + emits("update:series", -1); } emits("update:isSearch", false); } async function loadAchi(): Promise { + if (props.isSearch) return; achievements.value = await TSUserAchi.getAchievements(props.uid, props.series); if (!selectedAchi.value && achievements.value.length > 0) { selectedAchi.value = achievements.value[0];