111
This commit is contained in:
@@ -68,7 +68,7 @@ class _FundOrderCard extends StatelessWidget {
|
||||
case 1:
|
||||
return '待审批';
|
||||
case 2:
|
||||
return '已完成';
|
||||
return '已出款';
|
||||
case 3:
|
||||
return '已驳回';
|
||||
case 4:
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user