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'];