Browse Source

修复可提现金额显示不正确的问题

master
lanzu_qsy 5 years ago
parent
commit
5a6b02a3c7
  1. 4
      app/Admin/Controllers/LanzuCsWithdrawController.php

4
app/Admin/Controllers/LanzuCsWithdrawController.php

@ -112,7 +112,9 @@ class LanzuCsWithdrawController extends AdminController
});
} else {//编辑操作
$form->display('amount', '可提现金额')->value(LanzuUserBalance::getBalance($form->model()->cs_id, 3));
$aduid = LanzuCsInfo::where('id',$form->model()->cs_id)->pluck('admin_user_id')->first();
$form->display('amount', '可提现金额')->value(LanzuUserBalance::getBalance($aduid, 3));
$form->display('cs_id', '提现用户')->value($form->model()->name);
$form->display('money');

Loading…
Cancel
Save