From 044266a16992b91e6103727488f4c736cb7656c5 Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 15 Dec 2025 23:50:05 -0800 Subject: [PATCH] =?UTF-8?q?fix(ui):=20=E4=BF=AE=E6=94=B9=E6=8F=90=E5=8F=96?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 兑换页面:'提取 / 转动' → '提取' - 提款页面:'提款 积分' → '提取积分' 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../features/trading/presentation/pages/trading_page.dart | 6 +++--- .../withdraw/presentation/pages/withdraw_usdt_page.dart | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart b/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart index 7b3c9ed0..6f171cc2 100644 --- a/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart +++ b/frontend/mobile-app/lib/features/trading/presentation/pages/trading_page.dart @@ -263,7 +263,7 @@ class _TradingPageState extends ConsumerState { // // 分隔线 // _buildDivider(), const SizedBox(height: 24), - // 提取/转动按钮 + // 提取按钮 _buildWithdrawButton(), const SizedBox(height: 8), // USDT余额显示 @@ -520,7 +520,7 @@ class _TradingPageState extends ConsumerState { ); } - /// 构建提取/转动按钮 + /// 构建提取按钮 /// 当 USDT 余额为 0 时禁用 Widget _buildWithdrawButton() { // 余额为0时禁用 @@ -562,7 +562,7 @@ class _TradingPageState extends ConsumerState { ), const SizedBox(width: 8), Text( - '提取 / 转动', + '提取', style: TextStyle( fontSize: 16, fontFamily: 'Inter', diff --git a/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_usdt_page.dart b/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_usdt_page.dart index 83a3ceb6..60d9b522 100644 --- a/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_usdt_page.dart +++ b/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_usdt_page.dart @@ -365,7 +365,7 @@ class _WithdrawUsdtPageState extends ConsumerState { // 标题 const Expanded( child: Text( - '提款 积分', + '提取积分', style: TextStyle( fontSize: 18, fontFamily: 'Inter',