From 899e81654c9389785d58f9dbdf2ea7d2b2bc9082 Mon Sep 17 00:00:00 2001 From: zhangyongtian <1181606322@qq.com> Date: Fri, 13 Sep 2024 14:55:51 +0800 Subject: [PATCH] feat: 对接流程 --- gz-customerSystem/src/views/register/eventFlow/component/AssignedModel.jsx | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) diff --git a/gz-customerSystem/src/views/register/eventFlow/component/AssignedModel.jsx b/gz-customerSystem/src/views/register/eventFlow/component/AssignedModel.jsx index 870a180..5cc265c 100644 --- a/gz-customerSystem/src/views/register/eventFlow/component/AssignedModel.jsx +++ b/gz-customerSystem/src/views/register/eventFlow/component/AssignedModel.jsx @@ -4,8 +4,9 @@ import ArcoUpload from '@/components/ArcoUpload'; import { Scrollbars } from "react-custom-scrollbars"; import SelectObjModal from '@/components/SelectObjModal/selectPerson'; -import { useParams } from 'react-router-dom'; import * as $$ from '@/utils/utility'; +import { useNavigate } from 'react-router-dom'; + const FormItem = Form.Item; const TextArea = Input.TextArea; @@ -16,11 +17,11 @@ } function delFile(id) { - return $$.ax.request({ url: `fileInfo/deleteFileById`, type: 'delete', service: 'sys', data: { id } }); + return $$.ax.request({ url: `fileInfo/deleteFileById`, type: 'get', service: 'sys', data: { id } }); } export default function BackModel(props) { - const routeData = useParams(); + const navigate = useNavigate(); const formRef = useRef(); const [isModalVisible, setIsModalVisible] = useState(false); const [wantUser, setWantUser] = useState({}); @@ -35,7 +36,7 @@ formRef.current.validate(undefined, (errors, values) => { if (!errors) { handleAssign({ - caseTaskId: routeData.caseTaskId, + caseTaskId: props.caseTaskId, assignContent: values.assignContent, handleUnitId: wantUser['handleUnit'][0].value, handleUnitName: wantUser['handleUnit'][0].name, @@ -52,7 +53,7 @@ const handleTemplate = (type) => { if (type === 1) { - formRef.current.setFieldValue('assignContent', '本事项经初步核实,认为属于贵部门职责范围内的矛盾纠纷化解工作。请组织专门人员负责此事,尽快查明事实真相,依法依规进行处理,并在处理过程中充分考虑当事人的合理诉求,确保公平公正,维护当事人的合法权益。同时,请务必保持与当事人的沟通畅通,及时反馈办理进展,以增强矛盾纠纷化解工作的透明度和公信力。') + formRef.current.setFieldValue('assignContent', '本事项经初步核实,认为属于贵部门职责范围内的矛盾纠纷化解工作。请指定专人负责跟进此事,尽快核清事实,依法依规进行处理,并在处理过程中充分考虑当事人的合理诉求,确保公平公正,维护当事人的合法权益。同时,请务必做好与当事人的沟通解释,及时反馈办理进展,以增强矛盾纠纷化解工作的透明度和公信力') } else { formRef.current.setFieldValue('assignContent', '') } @@ -60,10 +61,11 @@ //交办请求 const handleAssign = async (data) => { - const res = await assign({ ...data, caseTaskId: props.caseTaskId }) + const res = await assign(data) if (res.type) { $$.infoSuccess({ content: '交办成功!' }); - props.onCancel() + props.onCancel(); + navigate('/mediate/visit/visitWorkBench') } } -- Gitblit v1.8.0