model = new ShopModel; $this->view->engine->layout(false); } /** * 门店列表 * @return mixed * @throws \think\exception\DbException */ public function lists() { $list = $this->model->getList($this->request->get()); return $this->fetch('list', compact('list')); } }