From ee9bd5cee3fe552b5f788e2af2dcd2daee6087f0 Mon Sep 17 00:00:00 2001
From: dminyi <1301963064@qq.com>
Date: Sun, 08 Sep 2024 15:35:08 +0800
Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh into master

---
 gz-customerSystem/src/components/personCard/DetailDialog.jsx |   76 +++++++++++++++++++++----------------
 1 files changed, 43 insertions(+), 33 deletions(-)

diff --git a/gz-customerSystem/src/components/personCard/DetailDialog.jsx b/gz-customerSystem/src/components/personCard/DetailDialog.jsx
index a62c172..183501d 100644
--- a/gz-customerSystem/src/components/personCard/DetailDialog.jsx
+++ b/gz-customerSystem/src/components/personCard/DetailDialog.jsx
@@ -69,10 +69,9 @@
     [
       {
         label: '身份证明材料',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />李晓明身份证明材料.pdf
-        </a>,
-        isFile: true
+        value: '',
+        isFile: true,
+        field: 'file',
       },
     ],
   ]
@@ -125,17 +124,15 @@
     [
       {
         label: '登记企业材料',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />广东好又多餐饮有限公司营业执照.pdf
-        </a>,
-        isFile: true
+        value: '',
+        isFile: true,
+        field: 'file',
       },
       {
         label: '法定代表人身份证明材料',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />江照月个人身份.pdf
-        </a>,
-        isFile: true
+        value: '',
+        isFile: true,
+        field: 'file1',
       },
     ],
   ]
@@ -188,17 +185,15 @@
     [
       {
         label: '机构登记材料',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />广东好又多餐饮有限公司营业执照.pdf
-        </a>,
-        isFile: true
+        value: '',
+        isFile: true,
+        field: 'file',
       },
       {
         label: '机构代表人身份证明材料',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />江照月个人身份.pdf
-        </a>,
-        isFile: true
+        value: '',
+        isFile: true,
+        field: 'file1',
       },
     ],
   ]
@@ -281,23 +276,21 @@
       {
         label: '代理对象',
         value: '',
-        field: 'personList',
+        field: 'personId',
       },
     ],
     [
       {
         label: '身份证明材料',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />广东好又多餐饮有限公司营业执照.pdf
-        </a>,
+        value: '',
         isFile: true,
+        field: 'file',
       },
       {
         label: '代理人授权委托书',
-        value: <a href="your-link-here.html" target="_blank">
-          <img src={link} alt="" className="title-file" />江照月个人身份.pdf
-        </a>,
+        value: '',
         isFile: true,
+        field: 'file1',
       },
     ],
   ]
@@ -328,7 +321,16 @@
     newList = mapList.map(item => {
       return item.map(res => {
         if (res.isFile) {
-          return res
+          return {
+            ...res,
+            value: <>
+              {data[res.field]?.map(item => {
+                return <a target="_blank">
+                  <img src={link} alt="" className="title-file" />{item.name}
+                </a>
+              })}
+            </>
+          }
         }
         if (res.isName) {
           return {
@@ -337,9 +339,17 @@
             perClass: data.perClassName || data.perTypeName
           }
         } else {
-          return {
-            ...res,
-            value: res.field === 'personList' ? data[res.field].join(',') : data[res.field]
+          if (res.field === 'personId') {
+            const filterValue = props.personData.filter(result => data[res.field].indexOf(result.id) != -1).map(result => result.trueName).join(',')
+            return {
+              ...res,
+              value: filterValue
+            }
+          } else {
+            return {
+              ...res,
+              value: data[res.field]
+            }
           }
         }
       })
@@ -372,9 +382,9 @@
         }
       </table>
       {/* 重复来访重点人员 */}
-      <div style={{ width: 'calc(100% - 9px)', background: '#f2f3f5', marginBottom: '20px', padding: '12px' }}>
+      {/* <div style={{ width: 'calc(100% - 9px)', background: '#f2f3f5', marginBottom: '20px', padding: '12px' }}>
         <KeyVisits />
-      </div>
+      </div> */}
     </div>
   )
 }

--
Gitblit v1.8.0