From 8eef1f1ac7fbae61a6a29db4d904065d25f2bd4a Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Thu, 6 Mar 2025 12:38:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E7=A7=AF=E5=88=86=E4=B8=8D=E8=B6=B3=E7=9A=84=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E5=A4=84=E7=90=86=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/WithdrawController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/controller/api/WithdrawController.php b/app/controller/api/WithdrawController.php index 014af11..66b3d5c 100644 --- a/app/controller/api/WithdrawController.php +++ b/app/controller/api/WithdrawController.php @@ -116,7 +116,9 @@ class WithdrawController return ApiResponseApp::error(null, '每天只能提现三次'); } $user = User::find($user_id); - + if($money_no>$user->money){ + return ApiResponseApp::error(null, '提现积分不足'); + } //提现金额 $rate = ExchangeRate::where('type', 'BDT')->get(); $money = $money_no / 100 * $rate[0]['points'];