无人机管理后台前端(已迁走)
rain
2025-06-12 0082fa417fb2af9add3406bf05ab3e3e45890c34
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
<template>
    <div class="task-top">
        <!--时间 天气-->
        <common-weather />
        <UserOperate />
        <div class="statistical-chart">
            <TaskTotal />
            <TaskIndustry />
            <TaskTime />
            <TaskEvent />
        </div>
    </div>
</template>
 
<script setup>
import { pxToRem } from '@/utils/rem'
// import CommonWeather from '@/components/CommonWeather.vue'
// import UserOperate from '@/components/UserOperate.vue'
import TaskTotal from './TaskTotal.vue'
import TaskIndustry from './TaskIndustry.vue'
import TaskTime from './TaskTime.vue'
import TaskEvent from './TaskEvent.vue'
</script>
 
<style lang="scss" scoped>
.task-top {
    position: relative;
    margin-bottom: 6px;
    .statistical-chart {
        margin-left: 10px;
        margin-right: 40px;
        display: flex;
        width:100%;
        height: 216px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
}
</style>