dataLists(new ServiceWorkLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 15:06 */ public function add() { $params = (new ServiceWorkValidate())->post()->goCheck('add'); $result = ServiceWorkLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ServiceWorkLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 15:06 */ public function edit() { $params = (new ServiceWorkValidate())->post()->goCheck('edit'); $result = ServiceWorkLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ServiceWorkLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 15:06 */ public function delete() { $params = (new ServiceWorkValidate())->post()->goCheck('delete'); $result = ServiceWorkLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->success('分配成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2024/07/10 15:06 */ public function detail() { $params = (new ServiceWorkValidate())->goCheck('detail'); $result = ServiceWorkLogic::detail($params); return $this->data($result); } public function allocateWorker() { $params = (new ServiceWorkValidate())->post()->goCheck('allocateWorker'); $result = ServiceWorkLogic::allocateWorker($params,$this->adminInfo); if (true === $result) { return $this->success('分配师傅成功', [], 1, 1); } return $this->fail(ServiceWorkLogic::getError()); } public function cancelWorker() { $params = (new ServiceWorkValidate())->post()->goCheck('detail'); $result = ServiceWorkLogic::cancel($params); if (true === $result) { return $this->success('取消工单成功!', [], 1, 1); } return $this->fail(ServiceWorkLogic::getError()); } }