data_request)); } /** * 权限添加/编辑 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-13T21:41:03+0800 */ public function Save() { $params = $this->data_request; $params['admin'] = $this->admin; return ApiService::ApiDataReturn(AdminPowerService::PowerSave($params)); } /** * 状态更新 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 * @date 2021-03-31 * @desc description */ public function StatusUpdate() { $params = $this->data_request; $params['admin'] = $this->admin; return ApiService::ApiDataReturn(AdminPowerService::PowerStatusUpdate($params)); } /** * 删除 * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-14T21:40:29+0800 */ public function Delete() { $params = $this->data_request; $params['admin'] = $this->admin; return ApiService::ApiDataReturn(AdminPowerService::PowerDelete($params)); } /** * 导出excel * @author Devil * @blog http://gong.gg/ * @version 0.0.1 * @datetime 2016-12-25T15:19:45+0800 */ public function Export() { $ret = AdminPowerService::PowerExport(); if(!empty($ret) && isset($ret['code']) && $ret['code'] != 0) { return MyView('public/tips_error', ['msg'=>$ret['msg']]); } } } ?>