Browse Source

优化提现状态

master
王子贤 2 months ago
parent
commit
3a2f1331ea
1 changed files with 1 additions and 1 deletions
  1. 2
      lib/pages/mine/withdraw_history_page.dart

2
lib/pages/mine/withdraw_history_page.dart

@ -139,7 +139,7 @@ class WithdrawHistoryPage extends StatelessWidget {
child: Text(
item.status == 1 ? "待审核" :
item.status == 2 && item.remitStatus == true ? "提现成功" :
item.status == 2 && item.remitStatus == false ? "待打款" :
item.status == 2 && (item.remitStatus ?? false) == false ? "待打款" :
item.status == 3 ? "审核失败" :
"",
style: TextStyle(

Loading…
Cancel
Save