From 73b731ed88d5d9cad459be26850985fdbc323f3c Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Sat, 8 Mar 2025 20:26:08 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20WithdrawController?= =?UTF-8?q?=20=E7=B1=BB=EF=BC=8C=E4=BC=98=E5=8C=96=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E4=B8=BA=E5=8F=AF=E7=BF=BB=E8=AF=91=E5=AD=97?= =?UTF-8?q?=E7=AC=A6=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/WithdrawController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/controller/api/WithdrawController.php b/app/controller/api/WithdrawController.php index 26e5ccc..5923b48 100644 --- a/app/controller/api/WithdrawController.php +++ b/app/controller/api/WithdrawController.php @@ -147,7 +147,7 @@ class WithdrawController if ($res->Success) { $withdraw->update([ 'status' => 4, // - 'status_text' => '等待银行打款', + 'status_text' => trans('等待银行打款'), 'order_number' => $res->TrackingNumber ?? null, ]); return ApiResponseApp::success(null, '转账成功'); @@ -182,7 +182,7 @@ class WithdrawController } $withdraw->update([ 'status' => 5, // - 'status_text' => '支付错误:'.$res->ErrorMessage + 'status_text' => trans('支付错误:').$res->ErrorMessage ]); UserRewardDao::base($user_id, 1, $money_no + self::$handlingFee, '提现失败返还'); // if ($res->ErrorMessage == "PayeeAccountNameFormatError") { @@ -218,12 +218,12 @@ class WithdrawController UserRewardDao::base($withdraw->user_id, 1, $money, '提现失败返还'); $withdraw->update([ 'status' => 5, - 'status_text' => '支付失败: ' . $failedMessage, + 'status_text' => trans('支付错误:') . $failedMessage, ]); } else { $withdraw->update([ 'status' => 2, - 'status_text' => '已到账', + 'status_text' => trans('已到账'), ]); } }