From b1d8561ca5a8f14cda26f121757a5b554c70e6db Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 20 Jan 2026 02:17:22 -0800 Subject: [PATCH] =?UTF-8?q?fix(asset):=20=E7=A7=AF=E5=88=86=E8=82=A1?= =?UTF-8?q?=E4=BC=B0=E5=80=BC=E6=98=BE=E7=A4=BA=E7=A7=AF=E5=88=86=E5=80=BC?= =?UTF-8?q?=E8=80=8C=E9=9D=9E=E4=BA=BA=E6=B0=91=E5=B8=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.5 --- .../mining-app/lib/presentation/pages/asset/asset_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart index cef3e354..2f0e7846 100644 --- a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart +++ b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart @@ -502,7 +502,7 @@ class _AssetPageState extends ConsumerState { amount: asset != null ? shareBalance.toString() : null, isLoading: isLoading, valueInCny: asset != null - ? '¥${formatAmount((shareBalance * currentPrice).toString())}' + ? '${formatAmount((shareBalance * currentPrice).toString())} 积分值' : null, // tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null, // 暂时隐藏 growthText: asset != null ? '每秒 +${formatDecimal(perSecondEarning, 8)}' : null,