dataLists(new FlowLists()); } /** * @notes 添加审批流程 * @return \think\response\Json * @author likeadmin * @date 2024/01/31 14:44 */ public function add() { $params = (new FlowValidate())->post()->goCheck('add'); $result = FlowLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(FlowLogic::getError()); } /** * @notes 编辑审批流程 * @return \think\response\Json * @author likeadmin * @date 2024/01/31 14:44 */ public function edit() { $params = (new FlowValidate())->post()->goCheck('edit'); $result = FlowLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(FlowLogic::getError()); } /** * @notes 删除审批流程 * @return \think\response\Json * @author likeadmin * @date 2024/01/31 14:44 */ public function delete() { $params = (new FlowValidate())->post()->goCheck('delete'); FlowLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取审批流程详情 * @return \think\response\Json * @author likeadmin * @date 2024/01/31 14:44 */ public function detail() { $params = (new FlowValidate())->goCheck('detail'); $result = FlowLogic::detail($params); return $this->data($result); } }