From e1cc364b0daafbc13fd333a6b58a74a6b617a384 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 20 Jan 2026 04:43:08 -0800 Subject: [PATCH] =?UTF-8?q?refactor(ui):=20=E5=85=91=E6=8D=A2=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E6=96=87=E6=A1=88=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 标题"积分股交易"改为"积分股兑换" - "当前积分股价格"改为"当前积分股价值" - 移除价格前的¥符号 Co-Authored-By: Claude Opus 4.5 --- .../lib/presentation/pages/trading/trading_page.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart b/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart index 5c0f7e46..3b7d3b12 100644 --- a/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart +++ b/frontend/mining-app/lib/presentation/pages/trading/trading_page.dart @@ -125,7 +125,7 @@ class _TradingPageState extends ConsumerState { padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 12), child: Center( child: Text( - '积分股交易', + '积分股兑换', style: TextStyle( fontSize: 18, fontWeight: FontWeight.bold, @@ -158,7 +158,7 @@ class _TradingPageState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - '当前积分股价格', + '当前积分股价值', style: TextStyle( fontSize: 12, fontWeight: FontWeight.w500, @@ -172,7 +172,6 @@ class _TradingPageState extends ConsumerState { AmountText( amount: priceInfo != null ? formatPrice(price) : null, isLoading: isLoading, - prefix: '\u00A5 ', style: const TextStyle( fontSize: 30, fontWeight: FontWeight.bold,