1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| <template>
| <div id="app"><router-view v-if="isRouterAlive" /></div>
| </template>
|
| <script>
| export default {
| name: 'App',
| provide() {
| return {
| reload: this.reload
| };
| },
| data() {
| return {
| isRouterAlive: true
| };
| },
| methods: {
| reload() {
| this.isRouterAlive = false;
| this.$nextTick(function() {
| this.isRouterAlive = true;
| });
| }
| }
| };
| </script>
|
| <style lang="scss">
| @import '/assets/font/iconfont.css';
| @import '/assets/font/myIcon.css';
| /*cover*/
| .el-button,
| .el-table,
| .el-form-item__label,
| .el-form-item__content,
| .el-input,
| .el-radio,
| .el-radio--medium.is-bordered .el-radio__label,
| .el-radio__label,
| .el-select-dropdown__item,
| .el-checkbox__label,
| .el-pagination__sizes .el-input .el-input__inner,
| .el-pager li,
| .el-divider__text, .el-link,
| .el-picker-panel__shortcut,
| .el-dialog__body,
| .el-tree-node__label,
| .el-tabs__item{
| font-size: 12px;
| }
| .el-tabs__item{ font-weight: bold;}
|
| .el-dialog__body{ padding:10px 20px;}
|
| .el-input__inner[type='number']{ padding-right: 0;}
|
| .dialog-footer button{ padding: 9px 15pxs;}
|
| body .el-table th.gutter{
| display: table-cell!important;
| }
| </style>
|
|