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:
parent
e098cd44f6
commit
75e74b07c3
|
|
@ -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),
|
||||
|
|
|
|||
Loading…
Reference in New Issue