13404089107
2025-03-06 fcd404a0aa879183f3f93cdda3e44dc90fcf245b
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
<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;
}
 
#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>