refactor(ui): 兑换页面文案调整

- 标题"积分股交易"改为"积分股兑换"
- "当前积分股价格"改为"当前积分股价值"
- 移除价格前的¥符号

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-20 04:43:08 -08:00
parent 93c06920bd
commit e1cc364b0d
1 changed files with 2 additions and 3 deletions

View File

@ -125,7 +125,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 12), padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 12),
child: Center( child: Center(
child: Text( child: Text(
'积分股交易', '积分股兑换',
style: TextStyle( style: TextStyle(
fontSize: 18, fontSize: 18,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,
@ -158,7 +158,7 @@ class _TradingPageState extends ConsumerState<TradingPage> {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
'当前积分股价', '当前积分股价',
style: TextStyle( style: TextStyle(
fontSize: 12, fontSize: 12,
fontWeight: FontWeight.w500, fontWeight: FontWeight.w500,
@ -172,7 +172,6 @@ class _TradingPageState extends ConsumerState<TradingPage> {
AmountText( AmountText(
amount: priceInfo != null ? formatPrice(price) : null, amount: priceInfo != null ? formatPrice(price) : null,
isLoading: isLoading, isLoading: isLoading,
prefix: '\u00A5 ',
style: const TextStyle( style: const TextStyle(
fontSize: 30, fontSize: 30,
fontWeight: FontWeight.bold, fontWeight: FontWeight.bold,