From 0b8fa6d8f6ea07d702a6675359faef5c3fcbe346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=9B=AE=E6=A3=83?= Date: Wed, 24 Apr 2024 00:37:13 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20=E4=BF=AE=E5=A4=8D=E7=89=B9?= =?UTF-8?q?=E5=AE=9A=E6=83=85=E5=86=B5=E4=B8=8B=E9=A6=96=E9=A1=B5=E5=8D=A1?= =?UTF-8?q?=E6=B1=A0=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/home/t-pool.vue | 6 ++---- src/router/modules/wiki.ts | 7 +------ 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/src/components/home/t-pool.vue b/src/components/home/t-pool.vue index 14697fb7..9473c6c6 100644 --- a/src/components/home/t-pool.vue +++ b/src/components/home/t-pool.vue @@ -144,8 +144,7 @@ onMounted(async () => { }); if (poolCards.value.length > 2) { poolSelect.value = poolCards.value.filter( - (pool) => - poolTimeGet.value[pool.postId] !== "未开始" && poolTimeGet.value[pool.postId] !== "已结束", + (pool) => poolTimeGet.value[pool.postId] !== "未开始", ); hasNew.value = poolCards.value.filter((pool) => poolTimeGet.value[pool.postId] === "未开始").length > 0; @@ -222,8 +221,7 @@ async function switchPool(): Promise { ); } else { poolSelect.value = poolCards.value.filter( - (pool) => - poolTimeGet.value[pool.postId] !== "未开始" && poolTimeGet.value[pool.postId] !== "已结束", + (pool) => poolTimeGet.value[pool.postId] !== "未开始", ); } } diff --git a/src/router/modules/wiki.ts b/src/router/modules/wiki.ts index a02389a4..233a71bb 100644 --- a/src/router/modules/wiki.ts +++ b/src/router/modules/wiki.ts @@ -1,7 +1,7 @@ /** * @file router/modules/wiki.ts * @description wiki 路由模块 - * @since Beta v0.4.1 + * @since Beta v0.4.6 */ const wikiRoutes = [ @@ -35,11 +35,6 @@ const wikiRoutes = [ name: "武器图鉴", component: async () => await import("../../pages/WIKI/Weapon.vue"), }, - { - path: "/wiki/detail/GCG/:id", - name: "卡牌详情", - component: async () => await import("../../views/tw-gcg.vue"), - }, ]; export default wikiRoutes;