IsLogin(); // 权限校验 $this->IsPower(); } /** * 配置列表 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-05-16 * @desc description */ public function Index() { // 配置信息 $this->assign('data', ConfigService::ConfigList()); // 编辑器文件存放地址 $this->assign('editor_path_type', 'agreement'); // 导航/视图 $nav_type = input('nav_type', 'register'); $this->assign('nav_type', $nav_type); return $this->fetch($nav_type); } /** * 配置数据保存 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-05-16 * @desc description */ public function Save() { return ConfigService::ConfigSave($_POST); } } ?>