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),
|
const SizedBox(height: 4),
|
||||||
// 有效积分股(含倍数)
|
// 有效积分股(含倍数)- 暂时隐藏
|
||||||
DataText(
|
// DataText(
|
||||||
data: effectiveShareBalance != null ? '≈ ${formatCompact(effectiveShareBalance)} 积分股 (含倍数)' : null,
|
// data: effectiveShareBalance != null ? '≈ ${formatCompact(effectiveShareBalance)} 积分股 (含倍数)' : null,
|
||||||
isLoading: isLoading,
|
// isLoading: isLoading,
|
||||||
placeholder: '≈ -- 积分股',
|
// placeholder: '≈ -- 积分股',
|
||||||
style: const TextStyle(
|
// style: const TextStyle(
|
||||||
fontSize: 14,
|
// fontSize: 14,
|
||||||
color: Color(0xFF9CA3AF),
|
// color: Color(0xFF9CA3AF),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
const SizedBox(height: 12),
|
const SizedBox(height: 12),
|
||||||
// 每秒增长
|
// 每秒增长
|
||||||
Container(
|
Container(
|
||||||
|
|
@ -491,7 +491,7 @@ class _AssetPageState extends ConsumerState<AssetPage> {
|
||||||
valueInCny: asset != null
|
valueInCny: asset != null
|
||||||
? '¥${formatAmount((shareBalance * currentPrice).toString())}'
|
? '¥${formatAmount((shareBalance * currentPrice).toString())}'
|
||||||
: null,
|
: null,
|
||||||
tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null,
|
// tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null, // 暂时隐藏
|
||||||
growthText: asset != null ? '每秒 +${formatDecimal(perSecondEarning, 8)}' : null,
|
growthText: asset != null ? '每秒 +${formatDecimal(perSecondEarning, 8)}' : null,
|
||||||
),
|
),
|
||||||
const SizedBox(height: 16),
|
const SizedBox(height: 16),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue