forked from drone/command-center-dashboard

chenyao
2025-03-31 295eb3cc87aaa5176d64a4ef985cdad0bfefae9a
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
<template>
  <div class="home-left">
    <!--时间 天气-->
    <common-weather></common-weather>
    <!--机巢概况-->
    <overview-next></overview-next>
    <!--巡检任务情况-->
    <inspection-rask-details></inspection-rask-details>
  </div>
</template>
 
<script setup>
import OverviewNext from './OverviewNext.vue';
import InspectionRaskDetails from './InspectionRaskDetails.vue';
import CommonWeather from '@/components/CommonWeather.vue';
 
</script>
 
<style scoped lang="scss">
.home-left {
  position: absolute;
  top: 88px;
  color: #e7f5ff;
}
</style>