diff --git a/lib/pages/mine/withdraw_history_page.dart b/lib/pages/mine/withdraw_history_page.dart index c2c4adb..b8a730b 100644 --- a/lib/pages/mine/withdraw_history_page.dart +++ b/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) ), 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( fontSize: 10.w, color: Colors.white