From a81aaa6acdd668c0a961430e5ff78b86dec9a86a Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 15 Dec 2025 04:38:34 -0800 Subject: [PATCH] =?UTF-8?q?fix(withdraw):=20=E4=BF=AE=E6=94=B9=E6=8F=90?= =?UTF-8?q?=E6=AC=BE=E9=A1=B5=E9=9D=A2=E6=96=87=E5=AD=97=E5=B9=B6=E6=9A=82?= =?UTF-8?q?=E6=97=B6=E5=B1=8F=E8=94=BDBSC=E7=BD=91=E7=BB=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 屏蔽 BSC (BNB Chain) 网络选项 - "提款地址" → "接收地址" - "请输入 KAVA 或 EVM 地址" → "请输入接收积分的地址" - "提款金额" → "积分提取数量" - "请输入提款金额" → "请输入积分数量" - "最小提款金额" → "最小提取数量" - 注意事项中的"提款"改为"提取" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../pages/withdraw_usdt_page.dart | 29 +++++++++---------- 1 file changed, 14 insertions(+), 15 deletions(-) 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 70157d4d..83a3ceb6 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 @@ -131,7 +131,7 @@ class _WithdrawUsdtPageState extends ConsumerState { // 验证地址 if (address.isEmpty) { - _showErrorSnackBar('请输入提款地址'); + _showErrorSnackBar('请输入接收地址'); return; } @@ -143,7 +143,7 @@ class _WithdrawUsdtPageState extends ConsumerState { // 验证金额 if (amountText.isEmpty) { - _showErrorSnackBar('请输入提款金额'); + _showErrorSnackBar('请输入积分数量'); return; } @@ -154,7 +154,7 @@ class _WithdrawUsdtPageState extends ConsumerState { } if (amount < _minAmount) { - _showErrorSnackBar('最小提款金额为 $_minAmount 积分'); + _showErrorSnackBar('最小提取数量为 $_minAmount 积分'); return; } @@ -458,8 +458,9 @@ class _WithdrawUsdtPageState extends ConsumerState { ), const SizedBox(height: 12), _buildNetworkOption(WithdrawNetwork.kava), - const SizedBox(height: 12), - _buildNetworkOption(WithdrawNetwork.bsc), + // TODO: BSC 网络暂时屏蔽,待开放后取消注释 + // const SizedBox(height: 12), + // _buildNetworkOption(WithdrawNetwork.bsc), ], ); } @@ -541,7 +542,7 @@ class _WithdrawUsdtPageState extends ConsumerState { crossAxisAlignment: CrossAxisAlignment.start, children: [ const Text( - '提款地址', + '接收地址', style: TextStyle( fontSize: 16, fontFamily: 'Inter', @@ -578,9 +579,7 @@ class _WithdrawUsdtPageState extends ConsumerState { decoration: InputDecoration( contentPadding: const EdgeInsets.all(16), border: InputBorder.none, - hintText: _selectedNetwork == WithdrawNetwork.kava - ? '请输入 KAVA 或 EVM 地址' - : '请输入 BSC 地址 (0x...)', + hintText: '请输入接收积分的地址', hintStyle: const TextStyle( fontSize: 14, fontFamily: 'Inter', @@ -611,7 +610,7 @@ class _WithdrawUsdtPageState extends ConsumerState { mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ const Text( - '提款金额', + '积分提取数量', style: TextStyle( fontSize: 16, fontFamily: 'Inter', @@ -668,7 +667,7 @@ class _WithdrawUsdtPageState extends ConsumerState { decoration: const InputDecoration( contentPadding: EdgeInsets.all(16), border: InputBorder.none, - hintText: '请输入提款金额', + hintText: '请输入积分数量', hintStyle: TextStyle( fontSize: 16, fontFamily: 'Inter', @@ -687,7 +686,7 @@ class _WithdrawUsdtPageState extends ConsumerState { ), const SizedBox(height: 8), Text( - '最小提款金额: $_minAmount 积分', + '最小提取数量: $_minAmount 积分', style: const TextStyle( fontSize: 12, fontFamily: 'Inter', @@ -835,10 +834,10 @@ class _WithdrawUsdtPageState extends ConsumerState { ], ), const SizedBox(height: 12), - _buildNoticeItem('请确保提款地址正确,错误地址将导致资产丢失'), + _buildNoticeItem('请确保接收地址正确,错误地址将导致资产丢失'), _buildNoticeItem('请选择正确的网络,不同网络之间不可互转'), - _buildNoticeItem('提款需要进行谷歌验证器验证'), - _buildNoticeItem('提款通常在 1-30 分钟内到账'), + _buildNoticeItem('提取需要进行谷歌验证器验证'), + _buildNoticeItem('提取通常在 1-30 分钟内到账'), ], ), );