From 06df38b918967d43191954ef1c87f84edd6ed201 Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 22 Dec 2025 17:32:58 -0800 Subject: [PATCH] =?UTF-8?q?fix(mobile-app):=20=E9=9A=90=E8=97=8F=E6=8F=90?= =?UTF-8?q?=E5=8F=96=E9=A1=B5=E9=9D=A2=E7=9A=84=E7=BD=91=E7=BB=9C=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E5=8A=9F=E8=83=BD?= 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 --- .../withdraw/presentation/pages/withdraw_confirm_page.dart | 5 +++-- .../withdraw/presentation/pages/withdraw_usdt_page.dart | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_confirm_page.dart b/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_confirm_page.dart index 2bdfc259..0e791bf5 100644 --- a/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_confirm_page.dart +++ b/frontend/mobile-app/lib/features/withdraw/presentation/pages/withdraw_confirm_page.dart @@ -463,8 +463,9 @@ class _WithdrawConfirmPageState extends ConsumerState { ), ), const SizedBox(height: 16), - _buildDetailRow('提取网络', _getNetworkName(widget.params.network)), - const SizedBox(height: 12), + // 隐藏提取网络显示(保留原有功能) + // _buildDetailRow('提取网络', _getNetworkName(widget.params.network)), + // const SizedBox(height: 12), _buildDetailRow('接收账号', _formatAddress(widget.params.address)), const SizedBox(height: 12), _buildDetailRow('提取数量', '${widget.params.amount.toStringAsFixed(2)} 绿积分'), 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 b97d350a..43139b86 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 @@ -378,9 +378,9 @@ class _WithdrawUsdtPageState extends ConsumerState { _buildBalanceCard(), const SizedBox(height: 24), - // 网络选择 - _buildNetworkSelector(), - const SizedBox(height: 24), + // 隐藏网络选择(保留原有功能) + // _buildNetworkSelector(), + // const SizedBox(height: 24), // 提款地址 _buildAddressInput(),