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
| <template>
| <div class="lifeline">
| <div class="aside" style="margin-left: 30px;">
| <left-charts></left-charts>
| </div>
| <div class="aside" style="margin-right: 30px;">
| <!-- <right-charts></right-charts>-->
| </div>
| </div>
| </template>
|
| <script>
| import LeftCharts from "./LeftCharts";
| import RightCharts from "./RightCharts";
| export default {
| name: "lifeline",
| components: {
| LeftCharts,
| RightCharts
| },
| }
| </script>
|
| <style scoped lang="less">
| .lifeline {
| 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: 25%;
| height: auto;
| //border: solid 1px red;
| display: flex;
| flex-direction: column;
| padding-top: 80px;
| padding-bottom: 60px;
| font-size: 50px;
| color: aliceblue;
| gap: 10px;
| }
| }
| </style>
|
|