From 98efd557d6e2e6ec629e0ef4f0b5fd9f7bc69afe Mon Sep 17 00:00:00 2001 From: BTMuli Date: Tue, 2 Dec 2025 23:04:10 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E5=AE=8C=E5=96=84=E5=A5=87?= =?UTF-8?q?=E5=81=B6=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/app/character.json | 4 ++-- src/pages/WIKI/Character.vue | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/data/app/character.json b/src/data/app/character.json index 4458f84a..c6b028ec 100644 --- a/src/data/app/character.json +++ b/src/data/app/character.json @@ -49,7 +49,7 @@ }, { "id": 10000118, - "contentId": -1, + "contentId": 506961, "name": "奇偶·女性", "title": "", "area": "主角", @@ -61,7 +61,7 @@ }, { "id": 10000117, - "contentId": -1, + "contentId": 506960, "name": "奇偶·男性", "title": "", "area": "主角", diff --git a/src/pages/WIKI/Character.vue b/src/pages/WIKI/Character.vue index 1fbeffbb..e7df3719 100644 --- a/src/pages/WIKI/Character.vue +++ b/src/pages/WIKI/Character.vue @@ -97,7 +97,13 @@ function handleSelect(val: SelectedCValue): void { } async function switchC(item: TGApp.App.Character.WikiBriefInfo): Promise { - if (item.id === 10000005 || item.id === 10000007) { + const outerIdList: ReadonlyArray = [ + 10000005, // 空 + 10000007, // 荧 + 10000117, // 奇偶·男性 + 10000118, // 奇偶·女性 + ]; + if (outerIdList.includes(item.id)) { await toOuter(item); return; }