request->isAjax()) { $get = $this->request->get(); $lists = ComplainLogic::lists($get); return JsonServer::success("获取成功", $lists); } return view('', [ 'category' => ComplainCategoryLogic::getCategory() ]); } /** * @NOTES: 添加帮助类 * @author: 张无忌 */ public function add() { if ($this->request->isAjax()) { // (new HelpValidate())->goCheck('add'); $post = $this->request->post(); $res = ResourceLogic::add($post); if ($res === false) { $error = ResourceLogic::getError() ?: '新增失败'; return JsonServer::error($error); } return JsonServer::success('新增成功'); } return view('', [ 'category' => ResourceCategoryLogic::getCategory() ]); } /** * @NOTES: 编辑帮助分类 * @author: 张无忌 */ public function complate() { if ($this->request->isAjax()) { $post = $this->request->post(); $res = ComplainLogic::complate($post); if ($res === false) { $error = ComplainLogic::getError() ?: '处理失败'; return JsonServer::error($error); } return JsonServer::success('处理成功'); } $id = $this->request->get('id'); return view('', [ 'detail' => ComplainLogic::detail($id), 'category' => ComplainCategoryLogic::getCategory() ]); } /** * @NOTES: 删除帮助分类 * @author: 张无忌 */ public function del() { if ($this->request->isAjax()) { // (new HelpValidate())->goCheck('id'); $id = $this->request->post('id'); $res = ComplainLogic::del($id); if ($res === false) { $error = ComplainLogic::getError() ?: '删除失败'; return JsonServer::error($error); } return JsonServer::success('删除成功'); } return JsonServer::error('异常'); } /** * @Notes: 隐藏帮助分类 * @Author: 张无忌 */ public function hide() { if ($this->request->isAjax()) { // (new HelpValidate())->goCheck('id'); $id = $this->request->post('id'); $res = ComplainLogic::hide($id); if ($res === false) { $error = ComplainLogic::getError() ?: '操作失败'; return JsonServer::error($error); } return JsonServer::success('操作成功'); } return JsonServer::success('异常'); } }