Commit e4af99a23d2f1e55ed24f871da23c3ec929f01e2

Authored by monkeyhouyi
1 parent 57235647

1

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