Browse Source

优化提现状态

master
王子贤 2 months ago
parent
commit
26b316bc73
1 changed files with 5 additions and 1 deletions
  1. 6
      lib/pages/mine/withdraw_history_page.dart

6
lib/pages/mine/withdraw_history_page.dart

@ -137,7 +137,11 @@ class WithdrawHistoryPage extends StatelessWidget {
color: (item.remitStatus ?? false) ? const Color.fromRGBO(25, 114, 248, 1) : const Color.fromRGBO(238, 129, 27, 1) color: (item.remitStatus ?? false) ? const Color.fromRGBO(25, 114, 248, 1) : const Color.fromRGBO(238, 129, 27, 1)
), ),
child: Text( child: Text(
(item.remitStatus ?? false) ? "提现成功" :"处理中",
item.status == 1 ? "待审核" :
item.status == 2 && item.remitStatus == true ? "提现成功" :
item.status == 2 && item.remitStatus == false ? "待打款" :
item.status == 3 ? "审核失败" :
"",
style: TextStyle( style: TextStyle(
fontSize: 10.w, fontSize: 10.w,
color: Colors.white color: Colors.white

Loading…
Cancel
Save