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 2f0e7846..a455e7d9 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 * (1 + multiplier) * currentPrice).toString())} 积分值' : null, // tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null, // 暂时隐藏 growthText: asset != null ? '每秒 +${formatDecimal(perSecondEarning, 8)}' : null,