From 87b23ee2de485629e45556c16ac792f978d3beec Mon Sep 17 00:00:00 2001 From: hailin Date: Mon, 22 Dec 2025 19:19:05 -0800 Subject: [PATCH] =?UTF-8?q?fix(mobile-app):=20=E4=BF=AE=E5=A4=8D=E6=8F=90?= =?UTF-8?q?=E6=AC=BE=E9=A1=B5=E9=9D=A2=20=5FfeeRate=20=E6=9C=AA=E5=AE=9A?= =?UTF-8?q?=E4=B9=89=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 _feeRate 改为 _feeConfig?.feeValue ?? 0.02, 使用 FeeConfig 对象中的 feeValue 字段。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../withdraw/presentation/pages/withdraw_usdt_page.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 2f705204..ba080c4b 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 @@ -862,7 +862,7 @@ class _WithdrawUsdtPageState extends ConsumerState { ), child: Column( children: [ - _buildFeeRow('手续费率', '${(_feeRate * 100).toStringAsFixed(1)}%'), + _buildFeeRow('手续费率', '${((_feeConfig?.feeValue ?? 0.02) * 100).toStringAsFixed(1)}%'), const SizedBox(height: 8), _buildFeeRow('手续费', '${fee.toStringAsFixed(2)} 绿积分'), const Divider(color: Color(0x33D4AF37), height: 24),