5caa7b16 by 任超

style:材料分屏样式修改

1 parent 57946afd
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
10 <!-- 材料目录明细 --> 10 <!-- 材料目录明细 -->
11 <div class="clmlmx-box" v-if="checkedId == '1'"> 11 <div class="clmlmx-box" v-if="checkedId == '1'">
12 <div class="title">申请材料目录</div> 12 <div class="title">申请材料目录</div>
13 <lb-table :column="column" :key="key" :heightNum="210" :pagination="false" :data="tableData"> 13 <lb-table :column="column" :key="key" :heightNum="150" :pagination="false" :data="tableData">
14 </lb-table> 14 </lb-table>
15 </div> 15 </div>
16 <!-- 材料预览 --> 16 <!-- 材料预览 -->
...@@ -61,7 +61,7 @@ export default { ...@@ -61,7 +61,7 @@ export default {
61 checkedId: "1", 61 checkedId: "1",
62 column: [ 62 column: [
63 { 63 {
64 width: "60", 64 width: "35",
65 renderHeader: (h, scope) => { 65 renderHeader: (h, scope) => {
66 return ( 66 return (
67 <i 67 <i
...@@ -87,14 +87,14 @@ export default { ...@@ -87,14 +87,14 @@ export default {
87 }, 87 },
88 }, 88 },
89 { 89 {
90 width: "60", 90 width: "35",
91 label: "序号", 91 label: "序号",
92 type: "index", 92 type: "index",
93 }, 93 },
94 { 94 {
95 prop: "isrequired", 95 prop: "isrequired",
96 label: "是否必选", 96 label: "是否必选",
97 width: "100", 97 width: "50",
98 render: (h, scope) => { 98 render: (h, scope) => {
99 // 新增的材料,全部为系统默认可选 99 // 新增的材料,全部为系统默认可选
100 if (scope.row.sfxjcl === "1") { 100 if (scope.row.sfxjcl === "1") {
...@@ -158,7 +158,7 @@ export default { ...@@ -158,7 +158,7 @@ export default {
158 }, 158 },
159 { 159 {
160 label: "操作", 160 label: "操作",
161 width: "90", 161 width: "80",
162 render: (h, scope) => { 162 render: (h, scope) => {
163 return ( 163 return (
164 <div> 164 <div>
...@@ -376,6 +376,7 @@ export default { ...@@ -376,6 +376,7 @@ export default {
376 .right { 376 .right {
377 width: 100%; 377 width: 100%;
378 height: 100%; 378 height: 100%;
379
379 .clmlmx-box { 380 .clmlmx-box {
380 margin: 0 auto; 381 margin: 0 auto;
381 382
......
...@@ -288,7 +288,8 @@ export default { ...@@ -288,7 +288,8 @@ export default {
288 height: 100%; 288 height: 100%;
289 background-color: #ffffff; 289 background-color: #ffffff;
290 overflow-y: auto; 290 overflow-y: auto;
291 padding-right: 10px; 291 padding-right: 3px;
292 overflow-x: hidden;
292 } 293 }
293 294
294 .submit_btn { 295 .submit_btn {
...@@ -308,7 +309,7 @@ export default { ...@@ -308,7 +309,7 @@ export default {
308 309
309 .btn { 310 .btn {
310 text-align: center; 311 text-align: center;
311 padding-top: 5px; 312 padding-top: 10px;
312 height: 36px; 313 height: 36px;
313 background-color: #ffffff; 314 background-color: #ffffff;
314 padding: 5px 0; 315 padding: 5px 0;
......
...@@ -57,6 +57,7 @@ ...@@ -57,6 +57,7 @@
57 57
58 .splitScreen-con { 58 .splitScreen-con {
59 flex: 1; 59 flex: 1;
60 width: 0;
60 } 61 }
61 62
62 .rightContainer { 63 .rightContainer {
......