|
|
@@ -153,7 +153,7 @@ class BalanceLogService extends BaseService
|
|
|
// 参数验证
|
|
|
$accountType = isset($params['account_type']) && $params['account_type']? intval($params['account_type']) : 1;
|
|
|
$money = isset($params['money'])? floatval($params['money']) : 0;
|
|
|
- $accountId = isset($params['account_id'])? trim($params['account_id']) : 0;
|
|
|
+ $accountId = isset($params['account_id'])? intval($params['account_id']) : 0;
|
|
|
if($money<=0){
|
|
|
$this->error = '请输入提现金额';
|
|
|
return false;
|