$this->shopId]; $list = CashClass::getCashList($where); util::success($list); } //申请提现 ssh 2021.3.14 public function actionApply() { $shop = $this->shop; $shop['shopAdminId'] = $this->shopAdminId; $txBalance = $shop['txBalance'] ?? 0.00; if ($txBalance <= 0) { util::fail('可提现余额不足'); } CashClass::addApply($shop); util::complete(); } }