diff --git a/app/common/services/withdraw/AuditService.php b/app/common/services/withdraw/AuditService.php index b46bc8c0..d218357d 100644 --- a/app/common/services/withdraw/AuditService.php +++ b/app/common/services/withdraw/AuditService.php @@ -88,8 +88,10 @@ class AuditService private function _withdrawAudit() { DB::transaction(function () { + // 减少冻结金额 + $this->audit_amount = $this->audit_amount - $this->withdrawModel->freeze_money; + // 计算实际提现信息 并且修改申请状态 $this->audit(); - //提现收入申请表 WithdrawIncomeApplyService::apply($this->withdrawModel,'backend'); // 判断:如果存在冻结金额 根据类型进行对应的解冻操作 $incomeFreezeSet = IncomeFreezeSet::getInfo($this->withdrawModel->member_id); diff --git a/resources/views/withdraw/detail.blade.php b/resources/views/withdraw/detail.blade.php index 60cabbec..404145e2 100644 --- a/resources/views/withdraw/detail.blade.php +++ b/resources/views/withdraw/detail.blade.php @@ -182,7 +182,7 @@