fix(trading): 将结算币种中的积分更换为人民币
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
7db38114d9
commit
83f10df29e
|
|
@ -409,7 +409,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
_buildCurrencyChip(SettlementCurrency.og, 'OG'),
|
_buildCurrencyChip(SettlementCurrency.og, 'OG'),
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
_buildCurrencyChip(SettlementCurrency.usdt, '积分'),
|
_buildCurrencyChip(SettlementCurrency.usdt, '人民币'),
|
||||||
const SizedBox(width: 8),
|
const SizedBox(width: 8),
|
||||||
_buildCurrencyChip(SettlementCurrency.dst, 'DST'),
|
_buildCurrencyChip(SettlementCurrency.dst, 'DST'),
|
||||||
],
|
],
|
||||||
|
|
@ -590,7 +590,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
: Text(
|
: Text(
|
||||||
'积分 余额: ${_formatNumber(_usdtBalance)}',
|
'人民币 余额: ${_formatNumber(_usdtBalance)}',
|
||||||
style: const TextStyle(
|
style: const TextStyle(
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontFamily: 'Inter',
|
fontFamily: 'Inter',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue