From 26b316bc735f18bfe3f4f1390962105ea7b4699b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AD=90=E8=B4=A4?= Date: Mon, 12 Jan 2026 17:00:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8F=90=E7=8E=B0=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/pages/mine/withdraw_history_page.dart | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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