getList($active_id); return $this->fetch('index', compact('list')); } /** * * @param $active_id * @return mixed * @throws \think\exception\DbException */ public function users($active_id) { $model = new ActiveUsersModel; $list = $model->getList($active_id); return $this->fetch('users', compact('list')); } }