forked from drone/command-center-dashboard

罗广辉
2025-04-03 7635213630830c4cbb9ff6ada69ba9b5c8a35d42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <div class="machine-left">
    <!--时间 天气-->
    <common-weather></common-weather>
    <!-- 机巢数据 -->
     <MachineData></MachineData>
     <!--巡检任务详情-->
     <InspectionRaskDetails></InspectionRaskDetails>
  </div>
</template>
 
<script setup>
import CommonWeather from '@/components/CommonWeather.vue';
import MachineData from './MachineData.vue';
import InspectionRaskDetails from './InspectionRaskDetails.vue';
</script>
 
<style scoped lang="scss">
.machine-left {
  position: absolute;
  top: 88px;
  color: #e7f5ff;
}
</style>