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