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 d0d42d0c..6206a609 100644 --- a/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart +++ b/frontend/mining-app/lib/presentation/pages/asset/asset_page.dart @@ -363,16 +363,16 @@ class _AssetPageState extends ConsumerState { ), ), const SizedBox(height: 4), - // 有效积分股(含倍数) - DataText( - data: effectiveShareBalance != null ? '≈ ${formatCompact(effectiveShareBalance)} 积分股 (含倍数)' : null, - isLoading: isLoading, - placeholder: '≈ -- 积分股', - style: const TextStyle( - fontSize: 14, - color: Color(0xFF9CA3AF), - ), - ), + // 有效积分股(含倍数)- 暂时隐藏 + // DataText( + // data: effectiveShareBalance != null ? '≈ ${formatCompact(effectiveShareBalance)} 积分股 (含倍数)' : null, + // isLoading: isLoading, + // placeholder: '≈ -- 积分股', + // style: const TextStyle( + // fontSize: 14, + // color: Color(0xFF9CA3AF), + // ), + // ), const SizedBox(height: 12), // 每秒增长 Container( @@ -491,7 +491,7 @@ class _AssetPageState extends ConsumerState { valueInCny: asset != null ? '¥${formatAmount((shareBalance * currentPrice).toString())}' : null, - tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null, + // tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null, // 暂时隐藏 growthText: asset != null ? '每秒 +${formatDecimal(perSecondEarning, 8)}' : null, ), const SizedBox(height: 16),