From 7938180736be7e610ef1f27e03b2d3e1b753fe2e Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Wed, 11 Sep 2024 10:01:02 +0800
Subject: [PATCH] Merge branch 'master' of http://120.79.193.119:9090/r/gzzfw/frontEnd/gzDyh

---
 gz-customerSystem/src/views/register/matterDetail/FileUpLoad.jsx |   53 ++++++++++++++++++++++++++++-------------------------
 1 files changed, 28 insertions(+), 25 deletions(-)

diff --git a/gz-customerSystem/src/views/register/matterDetail/FileUpLoad.jsx b/gz-customerSystem/src/views/register/matterDetail/FileUpLoad.jsx
index 5d1dba2..97f1cba 100644
--- a/gz-customerSystem/src/views/register/matterDetail/FileUpLoad.jsx
+++ b/gz-customerSystem/src/views/register/matterDetail/FileUpLoad.jsx
@@ -3,7 +3,7 @@
 import * as $$ from '@/utils/utility';
 import { Form, Input, Modal, Upload } from '@arco-design/web-react';
 import { IconLink } from '@arco-design/web-react/icon';
-
+import './index.less'
 
 const FormItem = Form.Item;
 const appUrl = $$.appUrl;
@@ -51,6 +51,30 @@
 
   return (
     <>
+
+      <Modal
+        style={{ width: '944px' }}
+        visible={scanImage}
+        onCancel={() => setScanImage(false)}
+        footer={null}
+        title='选择识别范围'
+        centered
+        unmountOnExit={true}
+        maskClosable={false}
+      >
+        <img
+          src={fileView?.url}
+          alt=""
+          style={{
+            display: 'block',
+            margin: 'auto',
+            maxWidth: '100%',
+            maxHeight: '100%',
+            objectFit: 'contain',
+          }}
+        />
+        <div><Button type="primary" onClick={() => handleScaned()} style={{ marginTop: '20px' }}>开始识别</Button></div>
+      </Modal>
       <Modal
         style={{ width: '1200px' }}
         visible={visible}
@@ -105,32 +129,11 @@
 
         </Form>
 
-      </Modal>
+      </Modal >
       <Modal
-        style={{ width: '944px' }}
-        visible={scanImage}
-        onCancel={() => setScanImage(false)}
-        footer={null}
-        title='选择识别范围'
-        centered
-        unmountOnExit={true}
-        maskClosable={false}
-      >
-        <img
-          src={fileView?.url}
-          alt=""
-          style={{
-            display: 'block',
-            margin: 'auto',
-            maxWidth: '100%',
-            maxHeight: '100%',
-            objectFit: 'contain',
-          }}
-        />
-        <div><Button type="primary" onClick={() => handleScaned()} style={{ marginTop: '20px' }}>开始识别</Button></div>
-      </Modal>
-      <Modal
+        className='scan-modal'
         style={{ width: '1200px' }}
+        wrapStyle={{ zIndex: 1002 }}
         visible={scaned}
         onCancel={() => setScaned(false)}
         footer={null}

--
Gitblit v1.8.0