riku
2024-06-07 0a97c702074830791cb29a158098f05c8033c4b1
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
<template>
  <!-- <el-row class="wrapper"> 可视化 </el-row> -->
  <BaseMap></BaseMap>
  <el-row class="overlay-container" :style="height">
    <el-col :span="18">
      <SupervisionVisual></SupervisionVisual>
    </el-col>
    <el-col :span="6">
      <SubtaskVisual></SubtaskVisual>
    </el-col>
  </el-row>
</template>
 
<script setup>
import SubtaskVisual from './SubtaskVisual.vue'
import SupervisionVisual from './SupervisionVisual.vue'
import { inject } from 'vue'
 
const mapHeight = inject('mapHeight')
 
const height = 'height:' + mapHeight
</script>
 
<style scoped>
.overlay-container {
  /* background: aliceblue; */
  position: absolute;
  width: 100%;
  /* height: 100vh; */
  top: 0;
  left: 0;
  /* padding: 4px; */
  pointer-events: none;
}
</style>