From 584116ae50566231634fe78d88b24d5bcf4cf51c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E8=88=AA?= Date: Tue, 25 Nov 2025 08:48:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=99=AA=E7=BB=83=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E5=88=B7=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/sparring/index.vue | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/pages/sparring/index.vue b/src/pages/sparring/index.vue index 5fe9ee80..8577d116 100644 --- a/src/pages/sparring/index.vue +++ b/src/pages/sparring/index.vue @@ -65,7 +65,12 @@ - + @@ -209,6 +214,7 @@ activeTagPop.value.push(item.value) } } + const triggered = ref(false) // 点击标签 const chooseTag = item => { if (!item.value) { @@ -288,6 +294,7 @@ const loading = ref(false) const changeTab = item => { if (!item) return + triggered.value = true sparringListBase.value = [] activeTab.value = item.name activeTabId.value = item.value || '' @@ -309,6 +316,7 @@ }) .finally(() => { loading.value = false + triggered.value = false }) } const changeTabSec = (item) => {