service = new CommissionService(['mall_id' => $this->mall_id]); } /** * 首页 * * @return string */ public function actionIndex() { if ($this->request->isAjax) { $params = $this->request->get(); return $this->success('ok', $this->service->getPageList($params)); } return $this->render($this->action->id); } }