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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
| <template>
| <div id="app">
| <router-view />
| </div>
| </template>
|
| <script>
| import "./utils/basics.less";
| import "./utils/app.css";
| import autofit from "autofit.js";
|
| export default {
| name: "app",
| components: {
| },
| computed: {
| },
| data() {
| return {
|
| };
| },
| created() {
|
| },
| mounted() {
| autofit.init({
| dh: 1080,
| dw: 1920,
| el: "#app",
| resize: true,
| }, false);
| },
| methods: {
|
| },
| };
| </script>
|
| <style lang='less'>
| body {
| padding-right: 0 !important;
| }
|
| .el-dialog {
| border-radius: 12px;
| }
|
| .v-modal {
| z-index: 999 !important;
| }
|
| .el-dialog__wrapper {
| z-index: 1000 !important;
| }
|
| .el-message {
| z-index: 9999 !important;
| position: fixed !important;
| right: 20px !important;
| bottom: 20px !important;
| top: auto !important;
| left: auto !important;
| transform: none !important;
| min-width: 300px;
| padding: 15px 20px;
| border-radius: 8px;
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
| }
|
| #app {
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| width: 100%;
| height: 100%;
| }
|
| input::-webkit-outer-spin-button,
| input::-webkit-inner-spin-button {
| -webkit-appearance: none !important;
| }
|
| input[type="number"] {
| -moz-appearance: textfield !important;
| }
|
| input[aria-hidden=true] {
| display: none !important;
| }
| </style>
|
|