fix(mobile-app): 修复提款页面 _feeRate 未定义错误
将 _feeRate 改为 _feeConfig?.feeValue ?? 0.02, 使用 FeeConfig 对象中的 feeValue 字段。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
726b317c23
commit
87b23ee2de
|
|
@ -862,7 +862,7 @@ class _WithdrawUsdtPageState extends ConsumerState<WithdrawUsdtPage> {
|
|||
),
|
||||
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),
|
||||
|
|
|
|||
Loading…
Reference in New Issue