fix(asset): 积分股估值显示积分值而非人民币

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-20 02:17:22 -08:00
parent edfdb1a899
commit b1d8561ca5
1 changed files with 1 additions and 1 deletions

View File

@ -502,7 +502,7 @@ class _AssetPageState extends ConsumerState<AssetPage> {
amount: asset != null ? shareBalance.toString() : null,
isLoading: isLoading,
valueInCny: asset != null
? '¥${formatAmount((shareBalance * currentPrice).toString())}'
? '${formatAmount((shareBalance * currentPrice).toString())} 积分值'
: null,
// tag: asset != null ? '含倍数资产: ${formatCompact(multipliedAsset.toString())}' : null, //
growthText: asset != null ? '每秒 +${formatDecimal(perSecondEarning, 8)}' : null,