Commit e4af99a23d2f1e55ed24f871da23c3ec929f01e2

Authored by monkeyhouyi
1 parent 57235647

1

src/components/CompanyForm/index.vue
@@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
14 width="60%" 14 width="60%"
15 top="15vh" 15 top="15vh"
16 :modal-append-to-body="false" 16 :modal-append-to-body="false"
17 - class="company-dialog" 17 + class="NCC-dialog company-dialog"
18 > 18 >
19 <el-form ref="elForm" :model="dataForm" size="small" label-width="100px" label-position="right" 19 <el-form ref="elForm" :model="dataForm" size="small" label-width="100px" label-position="right"
20 :rules="rules" v-lodding="loading"> 20 :rules="rules" v-lodding="loading">
@@ -149,10 +149,4 @@ export default { @@ -149,10 +149,4 @@ export default {
149 }; 149 };
150 </script> 150 </script>
151 <style lang="scss" scoped> 151 <style lang="scss" scoped>
152 -.company-dialog {  
153 - :deep(.el-dialog__body) {  
154 - max-height: 50vh;  
155 - overflow-y: scroll;  
156 - }  
157 -}  
158 </style> 152 </style>
159 \ No newline at end of file 153 \ No newline at end of file
src/components/InfoEditRecord/index.vue
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 width="80%" 12 width="80%"
13 top="10vh" 13 top="10vh"
14 :modal-append-to-body="false" 14 :modal-append-to-body="false"
15 - class="dialog-box" 15 + class="NCC-dialog dialog-box"
16 destroy-on-close 16 destroy-on-close
17 > 17 >
18 <el-row :gutter="20"> 18 <el-row :gutter="20">
@@ -367,12 +367,6 @@ export default { @@ -367,12 +367,6 @@ export default {
367 }; 367 };
368 </script> 368 </script>
369 <style lang="scss" scoped> 369 <style lang="scss" scoped>
370 -.dialog-box {  
371 - :deep(.el-dialog__body) {  
372 - height: 60vh;  
373 - overflow-y: scroll;  
374 - }  
375 -}  
376 .company-info { 370 .company-info {
377 display: flex; 371 display: flex;
378 flex-direction: row; 372 flex-direction: row;
src/components/InfoForm/index.vue
@@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@
12 width="80%" 12 width="80%"
13 top="10vh" 13 top="10vh"
14 :modal-append-to-body="false" 14 :modal-append-to-body="false"
15 - class="dialog-box" 15 + class="NCC-dialog dialog-box"
16 destroy-on-close 16 destroy-on-close
17 > 17 >
18 <el-form 18 <el-form
@@ -475,12 +475,6 @@ export default { @@ -475,12 +475,6 @@ export default {
475 }; 475 };
476 </script> 476 </script>
477 <style lang="scss" scoped> 477 <style lang="scss" scoped>
478 -.dialog-box {  
479 - :deep(.el-dialog__body) {  
480 - max-height: 60vh;  
481 - overflow-y: scroll;  
482 - }  
483 -}  
484 .company-info { 478 .company-info {
485 display: flex; 479 display: flex;
486 flex-direction: row; 480 flex-direction: row;
src/components/PasswordForm/index.vue
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
11 append-to-body 11 append-to-body
12 width="600px" 12 width="600px"
13 :modal-append-to-body="false" 13 :modal-append-to-body="false"
14 - class="dialog-box" 14 + class="NCC-dialog dialog-box"
15 destroy-on-close 15 destroy-on-close
16 > 16 >
17 <el-form ref="form" :model="user" :rules="rules" label-width="80px"> 17 <el-form ref="form" :model="user" :rules="rules" label-width="80px">
@@ -133,10 +133,4 @@ export default { @@ -133,10 +133,4 @@ export default {
133 }; 133 };
134 </script> 134 </script>
135 <style lang="scss" scoped> 135 <style lang="scss" scoped>
136 -.dialog-box {  
137 - :deep(.el-dialog__body) {  
138 - max-height: 60vh;  
139 - overflow-y: scroll;  
140 - }  
141 -}  
142 </style> 136 </style>
src/components/RegisterForm/index.vue
@@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
11 append-to-body 11 append-to-body
12 width="600px" 12 width="600px"
13 :modal-append-to-body="false" 13 :modal-append-to-body="false"
14 - class="dialog-box" 14 + class="NCC-dialog dialog-box"
15 destroy-on-close 15 destroy-on-close
16 > 16 >
17 <el-form 17 <el-form
@@ -161,10 +161,4 @@ export default { @@ -161,10 +161,4 @@ export default {
161 }; 161 };
162 </script> 162 </script>
163 <style lang="scss" scoped> 163 <style lang="scss" scoped>
164 -.dialog-box {  
165 - :deep(.el-dialog__body) {  
166 - max-height: 60vh;  
167 - overflow-y: scroll;  
168 - }  
169 -}  
170 </style> 164 </style>
src/views/baseSpecialAction/Form.vue
@@ -328,9 +328,4 @@ export default { @@ -328,9 +328,4 @@ export default {
328 }; 328 };
329 </script> 329 </script>
330 <style lang="scss" scoped> 330 <style lang="scss" scoped>
331 -.el-dialog__wrapper.zxDialog {  
332 - :deep(.el-dialog__body) {  
333 - max-height: unset;  
334 - }  
335 -}  
336 </style> 331 </style>
src/views/baseSystemInfo/DetailForm.vue
@@ -360,7 +360,7 @@ export default { @@ -360,7 +360,7 @@ export default {
360 }; 360 };
361 </script> 361 </script>
362 <style lang="scss" scoped> 362 <style lang="scss" scoped>
363 -.systemInfoDialog { 363 +.NCC-dialog.systemInfoDialog {
364 :deep(.el-dialog__body) { 364 :deep(.el-dialog__body) {
365 overflow: unset !important; 365 overflow: unset !important;
366 :deep(.el-tabs__content) { 366 :deep(.el-tabs__content) {
src/views/overView/msgForm.vue
@@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
7 lock-scroll 7 lock-scroll
8 width="50%" 8 width="50%"
9 > 9 >
10 - <el-row :gutter="15" style="padding-top: 10px" v-if="!isDetail"> 10 + <div style="padding-top: 10px" v-if="!isDetail">
11 <el-form 11 <el-form
12 ref="elForm" 12 ref="elForm"
13 :model="dataForm" 13 :model="dataForm"
@@ -79,9 +79,8 @@ @@ -79,9 +79,8 @@
79 </el-form-item> 79 </el-form-item>
80 </el-col> 80 </el-col>
81 </el-form> 81 </el-form>
82 - </el-row>  
83 - <el-row  
84 - :gutter="15" 82 + </div>
  83 + <div
85 style="padding-top: 10px" 84 style="padding-top: 10px"
86 class="msg-box" 85 class="msg-box"
87 v-loading="loading" 86 v-loading="loading"
@@ -90,7 +89,7 @@ @@ -90,7 +89,7 @@
90 <div class="msg-title">{{ dataForm.title }}</div> 89 <div class="msg-title">{{ dataForm.title }}</div>
91 <div class="content" v-html="dataForm.bodyContent"></div> 90 <div class="content" v-html="dataForm.bodyContent"></div>
92 <div class="files"></div> 91 <div class="files"></div>
93 - </el-row> 92 + </div>
94 <span slot="footer" class="dialog-footer"> 93 <span slot="footer" class="dialog-footer">
95 <el-button @click="visible = false">取 消</el-button> 94 <el-button @click="visible = false">取 消</el-button>
96 <el-button type="primary" @click="dataFormSubmit()" v-if="!isDetail" 95 <el-button type="primary" @click="dataFormSubmit()" v-if="!isDetail"
@@ -225,12 +224,6 @@ export default { @@ -225,12 +224,6 @@ export default {
225 }; 224 };
226 </script> 225 </script>
227 <style lang="scss" scoped> 226 <style lang="scss" scoped>
228 -.msg-dialog {  
229 - :deep(.el-dialog__body) {  
230 - max-height: 50vh;  
231 - overflow-y: scroll;  
232 - }  
233 -}  
234 .msg-box { 227 .msg-box {
235 .msg-title { 228 .msg-title {
236 text-align: center; 229 text-align: center;