傅行帆 5 years ago
parent
commit
44021d1994
2 changed files with 9 additions and 9 deletions
  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 View File

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

+ 4
- 4
src/pages/eContract/company/style.less View File

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