傅行帆 преди 5 години
родител
ревизия
44021d1994
променени са 2 файла, в които са добавени 9 реда и са изтрити 9 реда
  1. 5
    5
      src/pages/eContract/company/edit.jsx
  2. 4
    4
      src/pages/eContract/company/style.less

+ 5
- 5
src/pages/eContract/company/edit.jsx Целия файл

@@ -124,7 +124,7 @@ const header = props => {
124 124
 
125 125
     {
126 126
       name: <><span style={{ fontWeight: '800' }}>企业信息</span></>,
127
-      style: { marginTop: '50px' }
127
+      style: { marginTop: '25px' }
128 128
     },
129 129
     {
130 130
       name: "企业名称",
@@ -136,7 +136,7 @@ const header = props => {
136 136
     },
137 137
     {
138 138
       name: <><span style={{ fontWeight: '800' }}>对公账号信息</span></>,
139
-      style: { marginTop: '50px' }
139
+      style: { marginTop: '25px' }
140 140
     },
141 141
     {
142 142
       name: "银行名称",
@@ -153,7 +153,7 @@ const header = props => {
153 153
     {
154 154
       name: <><span style={{ fontWeight: '800' }}>企业管理员身份</span></>,
155 155
       render: <><span style={{ fontWeight: '800' }}>{data.companyManagerType === 'legal' ? '法人' : data.companyManagerType === 'agent' ? "代理人" : ""}</span></>,
156
-      style: { marginTop: '50px' }
156
+      style: { marginTop: '25px' }
157 157
     },
158 158
     {
159 159
       name: "姓名",
@@ -174,7 +174,7 @@ const header = props => {
174 174
       <TabPane tab="基本信息" key="1">
175 175
         <div>
176 176
           {datas1.map((x) => {
177
-            return <Row style={x.style || { margin: '20px 0' }}>
177
+            return <Row style={x.style || { margin: '10px 0' }}>
178 178
               <Col span={8}></Col>
179 179
               <Col span={4} className={Styles.title}>
180 180
                 {x.name}
@@ -205,7 +205,7 @@ const header = props => {
205 205
       <TabPane tab="企业认证信息" key="2">
206 206
 
207 207
         {datas2.map((x) => {
208
-          return <Row style={x.style || { margin: '20px 0' }}>
208
+          return <Row style={x.style || { margin: '10px 0' }}>
209 209
             <Col span={8}></Col>
210 210
             <Col span={4} className={Styles.title} >
211 211
               {x.name}

+ 4
- 4
src/pages/eContract/company/style.less Целия файл

@@ -29,15 +29,15 @@
29 29
 
30 30
 .title {
31 31
   height     : 45px;
32
-  font-size  : 20px;
32
+  font-size  : 14px;
33 33
   font-weight: 400;
34 34
   color      : rgba(102, 102, 102, 1);
35
-  line-height: 45px;
35
+  line-height: 25px;
36 36
  
37 37
 }
38 38
 .text {
39
-  font-size  : 18px;
39
+  font-size  : 14px;
40 40
   font-weight: 400;
41 41
   color      : rgba(51, 51, 51, 1);
42
-  line-height: 45px;
42
+  line-height: 25px;
43 43
 }