service = new CenterService(['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); } /** * 删除 * * @return string */ public function actionDelUser() { $id = $this->request->get('id', 0); return $this->service->delUser($id) ? $this->success('ok') : $this->error($this->service->getError()); } }