request->isAjax()) { $get = $this->request->get(); $lists = GoodsLogic::lists($get); return JsonServer::success('获取成功', $lists); } return view(); } /** * NOTE: 新增主营类目 * @author: 张无忌 */ public function add() { if ($this->request->isAjax()) { $post = $this->request->post(); if(!isset($post['image']) || empty($post['image'])) { return JsonServer::error('类目图标不能为空'); } //验证 if($post['pc_num'] <= 0){ return JsonServer::error('PC数量必须为正整数'); } if($post['mobile_num'] <= 0){ return JsonServer::error('手机设备必须为正整数'); } if($post['run_num'] <= 0){ return JsonServer::error('同时运行设备数必须为正整数'); } $res = GoodsLogic::add($post); if ($res === false) { $error = GoodsLogic::getError() ?: '新增失败'; return JsonServer::error($error); } return JsonServer::success('新增成功'); } return view(); } /** * NOTE: 编辑主营类目 * @author: 张无忌 */ public function edit() { if ($this->request->isAjax()) { $post = $this->request->post(); if(!isset($post['image']) || empty($post['image'])) { return JsonServer::error('类目图标不能为空'); } $res = GoodsLogic::edit($post); if ($res === false) { $error = GoodsLogic::getError() ?: '编辑失败'; return JsonServer::error($error); } return JsonServer::success('编辑成功'); } $id = $this->request->get('id'); return view('', [ 'detail' => GoodsLogic::detail($id) ]); } /** * NOTE: 删除主营类目 * @author: 张无忌 */ public function del() { if ($this->request->isAjax()) { $id = $this->request->post('id'); $res = GoodsLogic::del($id); if ($res === false) { $error = GoodsLogic::getError() ?: '删除失败'; return JsonServer::error($error); } return JsonServer::success('删除成功'); } return JsonServer::error('请求异常'); } }