refactor(frontend): hide multiplier-related UI elements in asset page

- Comment out '积分股(含倍数)' display
- Comment out '含倍数资产' tag

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-19 04:56:07 -08:00
parent e098cd44f6
commit 75e74b07c3
1 changed files with 11 additions and 11 deletions

View File

@ -363,16 +363,16 @@ class _AssetPageState extends ConsumerState<AssetPage> {
),
),
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<AssetPage> {
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),