From 9c1c665964c77c9c6ff7cedd0a6438c9308b07a3 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Sat, 17 Jan 2026 11:28:02 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E5=BE=AE=E8=B0=83=E5=A4=84?= =?UTF-8?q?=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/userAbyss/tua-detail.vue | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/components/userAbyss/tua-detail.vue b/src/components/userAbyss/tua-detail.vue index 76e7a59f..c45f9095 100644 --- a/src/components/userAbyss/tua-detail.vue +++ b/src/components/userAbyss/tua-detail.vue @@ -11,9 +11,17 @@
UID {{ props.uid }} | 第{{ props.id }}期
-
+
地脉异常: - {{ b }} + + +
@@ -28,7 +36,7 @@ import { nextTick, ref, useTemplateRef } from "vue"; import TuaDetailLevel from "./tua-detail-level.vue"; -type TuaDetailProps = { floor: TGApp.Sqlite.Abyss.Floor; uid: number; id: number }; +type TuaDetailProps = { floor: TGApp.Sqlite.Abyss.Floor; uid?: string; id: number }; const props = defineProps(); const show = ref(false); @@ -41,7 +49,7 @@ async function shareFloor(): Promise { } show.value = true; await nextTick(); - const fileName = `深境螺旋_第${props.id}期_${props.uid}_${props.floor.id}`; + const fileName = `深境螺旋_第${props.id}期_${props?.uid ?? ""}_${props.floor.id}`; await generateShareImg(fileName, floorRef.value); show.value = false; }