From c2db42d9f730d680f1c012fa2b41b4ab18427e03 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Wed, 11 Mar 2026 17:16:58 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20=E4=BF=AE=E6=AD=A3?= =?UTF-8?q?=E6=9C=80=E6=B7=B1=E6=8A=B5=E8=BE=BE=E6=8F=8F=E8=BF=B0=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/User/Abyss.vue | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/pages/User/Abyss.vue b/src/pages/User/Abyss.vue index 32f0b1b6..21b28ab6 100644 --- a/src/pages/User/Abyss.vue +++ b/src/pages/User/Abyss.vue @@ -94,12 +94,7 @@
- + @@ -175,6 +170,13 @@ watch( async () => await reloadUid(), ); +function getMaxFloor(abyss: TGApp.Sqlite.Abyss.TableTrans): string { + if (abyss.skippedFloor !== null && abyss.skippedFloor !== "") { + return `${abyss.maxFloor}(${abyss.skippedFloor})`; + } + return `${abyss.maxFloor}`; +} + async function reloadUid(uid?: string): Promise { uidList.value = await TSUserAbyss.getAllUid(); if (uidList.value.length === 0) uidList.value = [account.value.gameUid];