$this->data_detail, // 静态数据 'common_platform_type' => MyConst('common_platform_type'), 'common_app_event_type' => MyConst('common_app_event_type'), // 编辑器文件存放地址 'editor_path_type' => ResourcesService::EditorPathTypeValue('app_center_nav'), ]; // 数据 $params = $this->data_request; unset($params['id']); $assign['params'] = $params; // 模板赋值 MyViewAssign($assign); return MyView(); } /** * 添加/编辑 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-14T21:37:02+0800 */ public function Save() { $params = $this->data_request; return ApiService::ApiDataReturn(AppCenterNavService::AppCenterNavSave($params)); } /** * 删除 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-15T11:03:30+0800 */ public function Delete() { $params = $this->data_request; $params['user_type'] = 'admin'; return ApiService::ApiDataReturn(AppCenterNavService::AppCenterNavDelete($params)); } /** * 状态更新 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2017-01-12T22:23:06+0800 */ public function StatusUpdate() { $params = $this->data_request; return ApiService::ApiDataReturn(AppCenterNavService::AppCenterNavStatusUpdate($params)); } } ?>