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