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 分钟内到账'), ], ), );