Commit 38bc1d536a7464af4988db8f1e9f70d922547741
1 parent
8c2dc865
基础字体改大到16px
Showing
5 changed files
with
36 additions
and
11 deletions
src/App.vue
| @@ -6,20 +6,38 @@ | @@ -6,20 +6,38 @@ | ||
| 6 | 6 | ||
| 7 | <script> | 7 | <script> |
| 8 | export default { | 8 | export default { |
| 9 | - name: 'App' | ||
| 10 | -} | 9 | + name: "App", |
| 10 | +}; | ||
| 11 | </script> | 11 | </script> |
| 12 | <style lang="scss"> | 12 | <style lang="scss"> |
| 13 | -.flex{ | 13 | +html { |
| 14 | + font-size: 18px; | ||
| 15 | +} | ||
| 16 | +.flex { | ||
| 14 | display: flex; | 17 | display: flex; |
| 15 | } | 18 | } |
| 16 | -.aligin-center{ | 19 | +.aligin-center { |
| 17 | align-items: center; | 20 | align-items: center; |
| 18 | } | 21 | } |
| 19 | -.page-box{ | 22 | +.page-box { |
| 20 | display: flex; | 23 | display: flex; |
| 21 | align-items: center; | 24 | align-items: center; |
| 22 | justify-content: center; | 25 | justify-content: center; |
| 23 | padding: 10px; | 26 | padding: 10px; |
| 24 | } | 27 | } |
| 28 | +.el-menu-item, | ||
| 29 | +.el-submenu__title, | ||
| 30 | +.el-dropdown { | ||
| 31 | + font-size: 18px; | ||
| 32 | +} | ||
| 33 | +.el-table, | ||
| 34 | +.el-button, | ||
| 35 | +.el-tabs__item, | ||
| 36 | +.custom-tree-node, | ||
| 37 | +.el-form-item__label, | ||
| 38 | +.el-input, | ||
| 39 | +.el-textarea, | ||
| 40 | +.el-form-item__content { | ||
| 41 | + font-size: 16px; | ||
| 42 | +} | ||
| 25 | </style> | 43 | </style> |
src/components/Breadcrumb/index.vue
| @@ -66,7 +66,7 @@ export default { | @@ -66,7 +66,7 @@ export default { | ||
| 66 | <style lang="scss" scoped> | 66 | <style lang="scss" scoped> |
| 67 | .app-breadcrumb.el-breadcrumb { | 67 | .app-breadcrumb.el-breadcrumb { |
| 68 | display: inline-block; | 68 | display: inline-block; |
| 69 | - font-size: 14px; | 69 | + font-size: 16px; |
| 70 | line-height: 50px; | 70 | line-height: 50px; |
| 71 | margin-left: 8px; | 71 | margin-left: 8px; |
| 72 | 72 |
src/views/QuestionBank/index.vue
| @@ -988,7 +988,6 @@ | @@ -988,7 +988,6 @@ | ||
| 988 | display: flex; | 988 | display: flex; |
| 989 | align-items: center; | 989 | align-items: center; |
| 990 | justify-content: space-between; | 990 | justify-content: space-between; |
| 991 | - font-size: 14px; | ||
| 992 | padding-right: 8px; | 991 | padding-right: 8px; |
| 993 | } | 992 | } |
| 994 | </style> | 993 | </style> |
| 995 | \ No newline at end of file | 994 | \ No newline at end of file |
src/views/TestPaper/index.vue
src/views/dashboard/index.vue
| @@ -27,11 +27,11 @@ | @@ -27,11 +27,11 @@ | ||
| 27 | <span style="min-width: 3em">{{ | 27 | <span style="min-width: 3em">{{ |
| 28 | invitation.qujian | 28 | invitation.qujian |
| 29 | }}</span> | 29 | }}</span> |
| 30 | - <span style="min-width: 4em">{{ | 30 | + <span style="min-width: 3em">{{ |
| 31 | invitation.fullName | 31 | invitation.fullName |
| 32 | }}</span> | 32 | }}</span> |
| 33 | <span style="min-width: 7em">{{ invitation.phone }}</span> | 33 | <span style="min-width: 7em">{{ invitation.phone }}</span> |
| 34 | - <span style="min-width: 4em">{{ | 34 | + <span style="min-width: 5em">{{ |
| 35 | invitation.processName | 35 | invitation.processName |
| 36 | }}</span> | 36 | }}</span> |
| 37 | </li> | 37 | </li> |
| @@ -191,6 +191,9 @@ export default { | @@ -191,6 +191,9 @@ export default { | ||
| 191 | }, | 191 | }, |
| 192 | ], | 192 | ], |
| 193 | echartOption1: { | 193 | echartOption1: { |
| 194 | + textStyle: { | ||
| 195 | + fontSize: 16, | ||
| 196 | + }, | ||
| 194 | legend: { | 197 | legend: { |
| 195 | top: "bottom", | 198 | top: "bottom", |
| 196 | }, | 199 | }, |
| @@ -209,6 +212,9 @@ export default { | @@ -209,6 +212,9 @@ export default { | ||
| 209 | ], | 212 | ], |
| 210 | }, | 213 | }, |
| 211 | echartOption2: { | 214 | echartOption2: { |
| 215 | + textStyle: { | ||
| 216 | + fontSize: 16, | ||
| 217 | + }, | ||
| 212 | grid: { | 218 | grid: { |
| 213 | top: 20, | 219 | top: 20, |
| 214 | bottom: 40, | 220 | bottom: 40, |
| @@ -485,6 +491,7 @@ export default { | @@ -485,6 +491,7 @@ export default { | ||
| 485 | <style lang="scss" scoped> | 491 | <style lang="scss" scoped> |
| 486 | .popover-list { | 492 | .popover-list { |
| 487 | padding-left: 10px; | 493 | padding-left: 10px; |
| 494 | + padding-right: 10px; | ||
| 488 | li { | 495 | li { |
| 489 | list-style: none; | 496 | list-style: none; |
| 490 | height: 40px; | 497 | height: 40px; |
| @@ -492,6 +499,8 @@ export default { | @@ -492,6 +499,8 @@ export default { | ||
| 492 | display: flex; | 499 | display: flex; |
| 493 | align-items: center; | 500 | align-items: center; |
| 494 | border-top: 1px dashed #eaeaea; | 501 | border-top: 1px dashed #eaeaea; |
| 502 | + font-size: 16px; | ||
| 503 | + padding-right: 20px; | ||
| 495 | span { | 504 | span { |
| 496 | margin-right: 10px; | 505 | margin-right: 10px; |
| 497 | } | 506 | } |
| @@ -532,7 +541,7 @@ export default { | @@ -532,7 +541,7 @@ export default { | ||
| 532 | .panel-title { | 541 | .panel-title { |
| 533 | height: 3em; | 542 | height: 3em; |
| 534 | line-height: 3em; | 543 | line-height: 3em; |
| 535 | - font-size: 18px; | 544 | + font-size: 22px; |
| 536 | font-weight: bold; | 545 | font-weight: bold; |
| 537 | } | 546 | } |
| 538 | } | 547 | } |