riku
2025-06-09 38ff09bd2a638bc43a365efe0390cc3510d62e68
src/views/visualization/VisualizationView.vue
@@ -1,11 +1,40 @@
<template>
  <el-row>
    <el-col :span="8">1</el-col>
    <el-col :span="8">2</el-col>
    <el-col :span="8">3</el-col>
  <!-- <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></script>
<script setup>
import SubtaskVisual from './SubtaskVisual.vue'
import SupervisionVisual from './SupervisionVisual.vue'
import { inject } from 'vue'
<style scoped></style>
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>