fix: 修复提现金额计算中的类型转换问题
This commit is contained in:
parent
75a2bdaf03
commit
f5cc5ebd54
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue