From 66f74cb83013e6e8bac669c2f7465a4ab2244278 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Sun, 2 Mar 2025 18:02:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E9=80=BB=E8=BE=91=E4=B8=AD=E7=9A=84=E6=B3=A8=E9=87=8A=E5=92=8C?= =?UTF-8?q?=E9=94=99=E8=AF=AF=E6=8F=90=E7=A4=BA=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/WithdrawController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/controller/api/WithdrawController.php b/app/controller/api/WithdrawController.php index e8c92d5..6c5f077 100644 --- a/app/controller/api/WithdrawController.php +++ b/app/controller/api/WithdrawController.php @@ -129,7 +129,7 @@ class WithdrawController 'username' => $user->username, 'status_text' => '申请中', ]); - //大于1000等待管理员审核 + //大于1000积分等待管理员审核 if ($money_no >= 100000) { //用户积分减少$money UserRewardDao::base($user_id, 1, - ($money_no + self::$handlingFee), '提现'); @@ -178,13 +178,13 @@ class WithdrawController } $withdraw->update([ 'status' => 5, // - 'status_text' => '支付错误:'.$errorMsg + 'status_text' => '支付错误:'.$res->ErrorMessage ]); UserRewardDao::base($user_id, 1, $money_no + self::$handlingFee, '提现失败返还'); // if ($res->ErrorMessage == "PayeeAccountNameFormatError") { // return ApiResponseApp::error(null, '收款人帐号格式错误'); // } - return ApiResponseApp::error(null, $errorMsg); + return ApiResponseApp::error(null, $res->ErrorMessage); } }