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(),