From 855ddace774a5f98f2a32065c9df3bf415c59acc Mon Sep 17 00:00:00 2001 From: BTMuli Date: Fri, 23 Jan 2026 23:11:18 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=B8=20=E6=9A=B4=E9=9C=B2=E7=B3=BB?= =?UTF-8?q?=E5=88=97=E5=AE=8C=E6=88=90=E7=99=BE=E5=88=86=E6=AF=94=EF=BC=8C?= =?UTF-8?q?1=E4=BD=8D=E5=B0=8F=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/userAchi/tua-series.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/userAchi/tua-series.vue b/src/components/userAchi/tua-series.vue index dbc858a9..a73dfc87 100644 --- a/src/components/userAchi/tua-series.vue +++ b/src/components/userAchi/tua-series.vue @@ -19,7 +19,7 @@ alt="card" /> -
+
icon (); const overview = shallowRef({ fin: 0, total: 0 }); const progress = computed(() => { if (overview.value.total === 0) return 0; - return Math.round((overview.value.fin / overview.value.total) * 100); + return Math.round((overview.value.fin / overview.value.total) * 1000) / 10; }); const showCard = computed(() => { return props.series.card !== "";