From 45ba43ac8e5352e2a232bf7953d6112da2e7534f Mon Sep 17 00:00:00 2001 From: unanmed <1319491857@qq.com> Date: Wed, 25 Jun 2025 13:08:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AD=98=E8=AF=BB=E6=A1=A3=E7=95=8C?= =?UTF-8?q?=E9=9D=A2=E4=B8=AD=E8=BF=9B=E8=A1=8C=E6=95=B0=E6=8D=AE=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages-user/client-modules/src/render/ui/save.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages-user/client-modules/src/render/ui/save.tsx b/packages-user/client-modules/src/render/ui/save.tsx index 2067e5b..04011fa 100644 --- a/packages-user/client-modules/src/render/ui/save.tsx +++ b/packages-user/client-modules/src/render/ui/save.tsx @@ -76,7 +76,10 @@ export const SaveItem = defineComponent(props => { if (!props.data) return ''; else { const hero = props.data.data.hero; - return `${hero.hp}/${hero.atk}/${hero.def}`; + const hp = core.formatBigNumber(hero.hp); + const atk = core.formatBigNumber(hero.atk); + const def = core.formatBigNumber(hero.def); + return `${hp}/${atk}/${def}`; } });