riku
2025-03-07 2592dc279ec82bf3649a4dbe644c6416263a10ef
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<template>
  <BaseMap></BaseMap>
  <div class="overlay-container">
    <CoreHeader></CoreHeader>
    <el-row class="dropdown-wrap">
      <MapToolbox></MapToolbox>
      <!-- <SatelliteTelemetry></SatelliteTelemetry> -->
      <!-- <MissionManage></MissionManage> -->
      <ConfigManage></ConfigManage>
      <!-- <MapLocation></MapLocation> -->
      <MapScene></MapScene>
      <SceneSearch></SceneSearch>
      <GridSearch></GridSearch>
      <PollutionTrace class="satellite-right-top"></PollutionTrace>
    </el-row>
    <el-space>
      <ProductManage></ProductManage>
      <SatelliteMixTool :group-id="3"></SatelliteMixTool>
    </el-space>
    <!-- <CoreMenu></CoreMenu> -->
    <router-view></router-view>
  </div>
</template>
 
<script setup>
import { ref } from 'vue';
import ProductManage from './dataproduct/ProductManage.vue';
import PollutionTrace from './satellitetelemetry/PollutionTrace.vue';
import SatelliteMixTool from './satellitetelemetry/component/SatelliteMixTool.vue';
</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 {
  /* background-color: aliceblue; */
  position: absolute;
  width: 99.5vw;
  top: 10px;
  left: 2px;
  gap: 4px;
}
.satellite-right-top {
  /*width: 120px;*/
  position: absolute;
  right: 0px;
}
 
.aod-right-top {
  position: absolute;
  right: 100px;
}
</style>