riku
2024-05-13 d277d770292df0a1266c07f4773d62edd70e6515
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
<template>
  <BaseMap></BaseMap>
  <div class="overlay-container">
    <CoreHeader></CoreHeader>
    <el-row class="dropdown-wrap">
      <MapToolbox></MapToolbox>
      <MissionManage></MissionManage>
      <!-- <MapLocation></MapLocation> -->
      <MapScene></MapScene>
    </el-row>
    <CoreMenu></CoreMenu>
    <router-view></router-view>
  </div>
</template>
 
<script setup></script>
 
<style scoped>
.overlay-container {
  /* background: transparent; */
  position: absolute;
  min-height: var(--screen-min-height);
  min-width: var(--screen-min-width);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  /* padding: 4px; */
  pointer-events: none;
}
 
.dropdown-wrap {
  position: absolute;
  top: 10px;
  left: 2px;
  gap: 4px;
}
</style>