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
| <template>
| <div class="container">
| <left-container class="left-container"></left-container>
| <right-container class="right-container"></right-container>
| </div>
| </template>
|
| <script>
| import leftContainer from './components/leftContainer'
| import rightContainer from './components/rightContainer'
|
| export default {
| name: 'statistics',
| components:{leftContainer,rightContainer},
|
| data(){
| return {
|
| }
| },
| methods:{}
| }
|
| </script>
|
| <style scoped lang="scss">
| .container {
| position: relative;
| width: 100%;
| .left-container {
| display: flex;
| flex-direction: column;
| position: absolute;
| top: 60px;
| left: 0;
| width: 400px;
| height: calc(100vh - 60px);
| z-index: 90;
| }
|
| .right-container {
| display: flex;
| flex-direction: column;
| position: absolute;
| top: 60px;
| right: 0;
| width: 400px;
| height: calc(100vh - 60px);
| z-index: 90;
| }
| }
|
| </style>
|
|