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
| <template>
| <div class="emergency">
| <div class="aside" style="margin-left: 30px;">
| <div class="asideContent">
| <pie1 />
| <line1 />
| <table1 />
| </div>
| </div>
| <div class="aside" style="margin-right: 30px;">
| <div class="asideContent">
| <text1 />
| <text2 />
| <table2 />
| </div>
| </div>
| </div>
| </template>
|
| <script>
| import table1 from './table1.vue'
| import table2 from './table2.vue'
| import line1 from './line1.vue'
| import pie1 from './pie1.vue'
| import text1 from './text1.vue'
| import text2 from './text2.vue'
| export default {
| name: "emergency",
| components: {
| table1,
| line1,
| table2,
| pie1,
| text1,
| text2
| },
|
|
| }
| </script>
|
| <style scoped lang="less">
| .emergency {
| height: 100%;
| width: 100%;
| position: absolute;
| z-index: 100;
| top: 0px;
| display: flex;
| flex-direction: row;
| justify-content: space-between;
| pointer-events: none;
|
| .aside {
| width: 20%;
| height: auto;
| padding-top: 80px;
| padding-bottom: 60px;
| gap: 10px;
|
| .asideContent {
| background-color: rgba(24, 47, 78, 0.5);
| border-radius: 10px;
| pointer-events: all;
| padding-bottom: 16px;
|
| }
|
|
| }
| }
| </style>
|
|