From 303071f63971c6accdc6a2ebcb481a16c89ebc79 Mon Sep 17 00:00:00 2001 From: hzm <934585316@qq.com> Date: Sun, 22 Mar 2026 13:56:51 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E8=B5=84=E4=BA=A7?= =?UTF-8?q?=E6=B1=87=E6=80=BB=E8=AF=AF=E5=B7=AE=E8=AE=A1=E7=AE=97=E6=96=B9?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/GroupSummary.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/GroupSummary.jsx b/app/components/GroupSummary.jsx index c107cf6..88ab1fe 100644 --- a/app/components/GroupSummary.jsx +++ b/app/components/GroupSummary.jsx @@ -118,7 +118,7 @@ export default function GroupSummary({ if (profit) { hasHolding = true; - totalAsset += profit.amount; + totalAsset += Math.round(profit.amount * 100) / 100; if (profit.profitToday != null) { // 先累加原始当日收益,最后统一做一次四舍五入,避免逐笔四舍五入造成的总计误差 totalProfitToday += profit.profitToday;