From a09205214e5cb6803563cb06c6d9f58d68916b73 Mon Sep 17 00:00:00 2001
From: xusd <hugeinfo123>
Date: Mon, 16 Sep 2024 22:11:21 +0800
Subject: [PATCH] 调整网格调整,修正头部head数据传输逻辑

---
 gz-customerSystem/src/views/register/handleFeedback/component/AuditView.jsx |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/gz-customerSystem/src/views/register/handleFeedback/component/AuditView.jsx b/gz-customerSystem/src/views/register/handleFeedback/component/AuditView.jsx
index 32121ac..d409482 100644
--- a/gz-customerSystem/src/views/register/handleFeedback/component/AuditView.jsx
+++ b/gz-customerSystem/src/views/register/handleFeedback/component/AuditView.jsx
@@ -7,6 +7,7 @@
 import * as $$ from '@/utils/utility';
 import { Scrollbars } from "react-custom-scrollbars";
 import { getOffset, getSize } from '@/utils/utility';
+import { useNavigate } from 'react-router-dom';
 
 const FormItem = Form.Item;
 const appUrl = $$.appUrl;
@@ -26,6 +27,7 @@
 }
 
 const AuditView = (props) => {
+  const navigate = useNavigate();
   const formRef = useRef();
   const scrollRef = useRef(null);
   const [id, setId] = useState();
@@ -89,6 +91,7 @@
     const res = await submit(data)
     if (res.type) {
       $$.infoSuccess({ content: '提交成功!' });
+      navigate('/mediate/visit/visitWorkBench')
     }
   }
 

--
Gitblit v1.8.0