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="mapChart">
| <!-- <div class="chartHeader">
| <chart-header></chart-header>
| </div> -->
| <div class="chartContent1">
| <div class="chartView">
| <chart-view></chart-view>
| </div>
| </div>
| </div>
| </template>
|
| <script>
| import chartHeader from "./chartHeader.vue";
| import chartView from "./../chartView/index.vue";
| export default {
| components: {
| chartHeader,
| chartView
| },
| watch() {}
| };
| </script>
|
| <style scoped>
| .mapChart {
| width: 100%;
| height: 100%;
| display: flex;
| flex-direction: column;
| overflow: hidden;
| }
|
| .mapChart .chartHeader {
| width: 100%;
| height: 38px;
| }
| .chartContent1 {
| flex: 1;
| position: relative;
| }
| .chartView {
| position: absolute;
| width: 100%;
| height: 100%;
|
| }
| </style>
|
|