dataLists(new QualityEventLists()); } /** * @notes 添加质量事件 * @return \think\response\Json * @author likeadmin * @date 2023/12/21 09:42 */ public function add() { $params = (new QualityEventValidate())->post()->goCheck('add'); $result = QualityEventLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(QualityEventLogic::getError()); } /** * @notes 编辑质量事件 * @return \think\response\Json * @author likeadmin * @date 2023/12/21 09:42 */ public function edit() { $params = (new QualityEventValidate())->post()->goCheck('edit'); $result = QualityEventLogic::edit($params,$this->adminId); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(QualityEventLogic::getError()); } /** * @notes 删除质量事件 * @return \think\response\Json * @author likeadmin * @date 2023/12/21 09:42 */ public function delete() { $params = (new QualityEventValidate())->post()->goCheck('delete'); QualityEventLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取质量事件详情 * @return \think\response\Json * @author likeadmin * @date 2023/12/21 09:42 */ public function detail() { $params = (new QualityEventValidate())->goCheck('detail'); $result = QualityEventLogic::detail($params); return $this->data($result); } }