From 08161d8379ce41fd902f61ea9be0f1ff7f1ab7f5 Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Mon, 02 Sep 2024 17:44:21 +0800
Subject: [PATCH] feat:当事人文件上传对接

---
 gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx |   53 ++++++++---------------------------------------------
 1 files changed, 8 insertions(+), 45 deletions(-)

diff --git a/gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx b/gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx
index 2149ce9..cab3cc3 100644
--- a/gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx
+++ b/gz-customerSystem/src/views/register/visit/component/visitorRegister.jsx
@@ -25,10 +25,6 @@
 const FormItem = Form.Item;
 const InputSearch = Input.Search;
 
-function getId() {
-  return $$.ax.request({ url: `caseUtils/getNewTimeId`, type: 'get', service: 'utils' });
-}
-
 
 const VisitorRegister = (props) => {
   const [dialogType, setDialogType] = useState();//添加当事人的类型
@@ -259,44 +255,6 @@
     // 更多列配置...
   ];
 
-  const options1 = [
-    {
-      value: 'jingjijiufen',
-      label: '经济纠纷',
-      children: [
-        {
-          value: 'laodongjiufen',
-          label: '劳动纠纷',
-        },
-        {
-          value: 'laodongzhengyijiufen',
-          label: '劳动争议纠纷',
-        },
-      ],
-    },
-    {
-      value: 'linlijiufen',
-      label: '邻里纠纷',
-      children: [
-        {
-          value: 'linlijiufen',
-          label: '邻里纠纷',
-        },
-      ],
-    },
-  ];
-
-  //获取id
-  const getAppId = async (value) => {
-    const res = await getId()
-    if (res.type) {
-      setFakeData([...fakeData, {
-        ...value,
-        id: res.data
-      }])
-    }
-  }
-
   //获取当前时间
   const getFormattedDateTime = () => {
     let now = new Date();
@@ -320,8 +278,9 @@
   }
 
   //添加当事人
-  const handleAddParty = (value) => {
-    if (value.id) {
+  const handleAddParty = (value, isEdit) => {
+    console.log(value, isEdit);
+    if (isEdit) {
       //编辑
       const newList = fakeData.map(item => {
         if (item.id === value.id) {
@@ -333,7 +292,9 @@
       setFakeData(newList)
       setEditData(null)
     } else {
-      getAppId(value)
+      setFakeData([...fakeData, {
+        ...value
+      }])
     }
   }
 
@@ -742,6 +703,7 @@
           onClose={() => setAddVisabled(false)}
           handleAddParty={handleAddParty}
           editData={editData}
+          mainId={props.mainId}
         />
       </Modal>
       <Modal
@@ -764,6 +726,7 @@
           fakeData={fakeData}
           dialogType={dialogType}
           editData={editData}
+          mainId={props.mainId}
         />
       </Modal>
       <Modal

--
Gitblit v1.8.0