Riku
2025-06-09 2547159bbd781c8e1a41ecc939385396c85f9766
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
<template>
  <!-- <el-row class="wrapper"> 可视化 </el-row> -->
  <el-row class="wrapper">
    <el-col :span="10">
      <SubtaskVisual></SubtaskVisual>
    </el-col>
    <el-col :span="14">
      <el-row justify="end">
        <SupervisionVisual></SupervisionVisual>
      </el-row>
    </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;
}
 
.wrapper {
  background-color: aliceblue;
}
</style>