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
| <template>
| <div id="app">
| <router-view/>
| </div>
| </template>
|
| <script>
| export default {
| name: 'App',
| data() {
| return {}
| },
| computed: {},
| watch: {},
| created() {
| },
| methods: {}
| }
| </script>
| <style lang="scss">
| #app {
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
| /* 全局模态框样式 */
| .el-dialog__header,.el-message-box__header {
| box-sizing: border-box;
| height: 56px;
| border-bottom: 1px solid rgb(238, 238, 238);
| padding: 0px;
| display: flex;
| align-items: center;
| }
| .el-dialog__header::before {
| content: "";
| display: inline-block;
| width: 4px;
| height: 30.24px;
| background: rgb(0, 95, 201);
| border-radius: 10px;
| margin-left: 32px;
| margin-right: 8.5px;
| }
| </style>
|
|