From f5cc5ebd54f7f0f0acce0cab7524b4b9b2f0faf4 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Fri, 7 Mar 2025 13:31:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8F=90=E7=8E=B0?= =?UTF-8?q?=E9=87=91=E9=A2=9D=E8=AE=A1=E7=AE=97=E4=B8=AD=E7=9A=84=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E8=BD=AC=E6=8D=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controller/api/WithdrawController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controller/api/WithdrawController.php b/app/controller/api/WithdrawController.php index 66b3d5c..8c08a8e 100644 --- a/app/controller/api/WithdrawController.php +++ b/app/controller/api/WithdrawController.php @@ -121,7 +121,7 @@ class WithdrawController } //提现金额 $rate = ExchangeRate::where('type', 'BDT')->get(); - $money = $money_no / 100 * $rate[0]['points']; + $money = (int)$money_no / 100 * $rate[0]['points']; $withdraw = Withdraw::create([ 'user_id' => $user_id,