This commit is contained in:
sion
2026-04-05 23:28:38 +08:00
parent 0c66b3725f
commit da0f9d6f5e
21 changed files with 640 additions and 394 deletions

View File

@@ -68,7 +68,7 @@ class _FundOrderCard extends StatelessWidget {
case 1:
return '待审批';
case 2:
return '完成';
return '出款';
case 3:
return '已驳回';
case 4:

View File

@@ -278,6 +278,34 @@ class _FundOrdersPageState extends State<FundOrdersPage> {
style: const TextStyle(fontSize: 12, color: Colors.grey),
),
],
// 提现详情
if (!isDeposit) ...[
if (order.fee != null) ...[
const SizedBox(height: 4),
Row(
children: [
const Text('手续费(10%): ', style: TextStyle(fontSize: 12, color: Colors.grey)),
Text('-${order.fee} USDT', style: const TextStyle(fontSize: 12)),
],
),
],
if (order.receivableAmount != null) ...[
const SizedBox(height: 4),
Row(
children: [
const Text('到账金额: ', style: TextStyle(fontSize: 12, color: Colors.grey)),
Text('${order.receivableAmount} USDT', style: const TextStyle(fontSize: 12, fontWeight: FontWeight.bold)),
],
),
],
if (order.network != null) ...[
const SizedBox(height: 4),
Text(
'提现网络: ${order.network}',
style: const TextStyle(fontSize: 12, color: Colors.grey),
),
],
],
const SizedBox(height: 8),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,