From afcb2c637575188079a172c6dd257f2d72b9d55e Mon Sep 17 00:00:00 2001
From: tuwei <1249185101@qq.com>
Date: Thu, 4 May 2023 10:55:31 +0800
Subject: [PATCH] =?UTF-8?q?fix:1.=E8=BF=90=E7=BB=B4=E5=9C=B0=E5=9B=BE?=
 =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=9D=83=E9=99=90=E9=85=8D=E7=BD=AE=E8=A1=A8?=
 =?UTF-8?q?=E6=A0=BC=E6=94=B9=E6=88=90=E5=B7=A6=E5=8F=B3=E7=BB=93=E6=9E=84?=
 =?UTF-8?q?2.=E8=BF=90=E7=BB=B4=E5=9C=B0=E5=9B=BE=E9=85=8D=E7=BD=AE?=
 =?UTF-8?q?=E8=8C=83=E5=9B=B4=E8=AE=BE=E7=BD=AE=E6=94=AF=E6=8C=81=E6=A3=80?=
 =?UTF-8?q?=E7=B4=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../platformCenter/gis/schemeConfig/SchemeConfig.less |  7 +++++++
 .../gis/schemeConfig/ScopeMap/index.jsx               |  2 +-
 .../schemeConfig/solutionConfig/solutionConfig.jsx    | 11 +++++++----
 3 files changed, 15 insertions(+), 5 deletions(-)

diff --git a/src/pages/platformCenter/gis/schemeConfig/SchemeConfig.less b/src/pages/platformCenter/gis/schemeConfig/SchemeConfig.less
index 3360f290..0ed3533f 100644
--- a/src/pages/platformCenter/gis/schemeConfig/SchemeConfig.less
+++ b/src/pages/platformCenter/gis/schemeConfig/SchemeConfig.less
@@ -256,6 +256,13 @@
     height: calc(100vh - 250px) !important;
     border-bottom: 1px solid #f0f0f0;
   }
+  .tableContainer {
+    display: flex;
+    justify-content: space-between;
+    .tableContent {
+      width: 49%;
+    }
+  }
 }
 
 .titleText {
diff --git a/src/pages/platformCenter/gis/schemeConfig/ScopeMap/index.jsx b/src/pages/platformCenter/gis/schemeConfig/ScopeMap/index.jsx
index 5b7dd427..26b57a93 100644
--- a/src/pages/platformCenter/gis/schemeConfig/ScopeMap/index.jsx
+++ b/src/pages/platformCenter/gis/schemeConfig/ScopeMap/index.jsx
@@ -969,7 +969,7 @@ const Map = props => {
             onFinish={onFinish}
           >
             <Form.Item label="鍒囨崲鏂规" name="schemename" style={{ marginBottom: '19px' }}>
-              <Select placeholder="璇烽€夋嫨鏂规">
+              <Select placeholder="璇烽€夋嫨鏂规" showSearch>
                 {schemeList.map((item, index) => (
                   <Option value={item.schemename} key={index}>
                     {item.schemename}
diff --git a/src/pages/platformCenter/gis/schemeConfig/solutionConfig/solutionConfig.jsx b/src/pages/platformCenter/gis/schemeConfig/solutionConfig/solutionConfig.jsx
index 84ba01ce..a8dc3ff4 100644
--- a/src/pages/platformCenter/gis/schemeConfig/solutionConfig/solutionConfig.jsx
+++ b/src/pages/platformCenter/gis/schemeConfig/solutionConfig/solutionConfig.jsx
@@ -658,7 +658,8 @@ const VectorData = props => {
   return (
     <div className={styles.solutionContainer}>
       <Spin tip="loading..." spinning={checkLoading}>
-        <div style={{ height: 'calc(100vh - 150px)', width: '100%', overflow: 'scroll' }}>
+        <div className={styles.tableContainer} style={{ height: 'calc(100vh - 150px)', width: '100%', overflow: 'scroll' }}>
+          <div className={styles.tableContent}>
           <Divider orientation="left">
             <div className={styles.divider}>
               {' '}
@@ -678,9 +679,10 @@ const VectorData = props => {
             // style={{ height: 'calc(100vh - 610px)' }}
             pagination={false}
             rowKey="schemename"
-            scroll={{ y: 250 }}
+            scroll={{ y: 600 }}
           />
-
+          </div>
+          <div className={styles.tableContent}>
           <Divider orientation="left">
             <div className={styles.divider}>
               Moblie{' '}
@@ -697,10 +699,11 @@ const VectorData = props => {
             dataSource={handData}
             bordered
             rowKey="schemename"
-            scroll={{ y: 250 }}
+            scroll={{ y: 600 }}
             // style={{ height: 'calc(100vh - 610px)' }}
             pagination={false}
           />
+          </div>
         </div>
       </Spin>
       <AddModal
-- 
2.17.1