ConfigService::ConfigList(), // 编辑器文件存放地址 'editor_path_type' => ResourcesService::EditorPathTypeValue('agreement'), ]; // 导航数据 $nav_data = [ [ 'name' => '用户注册协议', 'type' => 'register', ], [ 'name' => '用户隐私政策', 'type' => 'privacy', ] ]; $assign['nav_data'] = $nav_data; // 导航/视图 $nav_type = empty($this->data_request['nav_type']) ? 'register' : $this->data_request['nav_type']; $assign['nav_type'] = $nav_type; // 数据赋值 MyViewAssign($assign); return MyView($nav_type); } /** * 配置数据保存 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2019-05-16 * @desc description */ public function Save() { return ApiService::ApiDataReturn(ConfigService::ConfigSave($_POST)); } } ?>