From c8b15cd9ddaa6c85b97c689f013e849e610663f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=90=A6?= Date: Fri, 3 Jul 2026 12:35:34 +0800 Subject: [PATCH] =?UTF-8?q?1.=20=E4=BC=98=E5=8C=96=E5=8C=BB=E7=94=9F?= =?UTF-8?q?=E3=80=81=E8=AF=8A=E6=89=80=E7=9A=84=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/utils/formatPrice.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web-antd/src/utils/formatPrice.ts b/apps/web-antd/src/utils/formatPrice.ts index 04cc9500..9bd55c04 100644 --- a/apps/web-antd/src/utils/formatPrice.ts +++ b/apps/web-antd/src/utils/formatPrice.ts @@ -21,6 +21,7 @@ export function formatPriceLikeBackend(value: unknown): number { } milli -= milli % 10; return Math.round((milli / 1000) * 100) / 100; + // return milli / 1000; } /** 模拟 PHP bcmul 在指定 scale 下向零截断 */