无人机管理后台前端(已迁走)
张含笑
2025-09-01 2ca94de8ede18ac07ccfd8dec7b6f6a707adde9b
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
<!--
 * @Author       : yuan
 * @Date         : 2025-06-14 15:19:16
 * @LastEditors  : yuan
 * @LastEditTime : 2025-06-26 11:46:38
 * @FilePath     : \src\views\job\components\TaskTop\TaskTop.vue
 * @Description  : 
 * Copyright 2025 OBKoro1, All Rights Reserved. 
 * 2025-06-14 15:19:16
-->
<template>
    <div class="task-top">
        <!--时间 天气-->
        <div class="statistical-chart">
            <TaskTotal />
            <TaskIndustry />
            <TaskTime />
            <TaskEvent />
        </div>
    </div>
</template>
 
<script setup>
import { pxToRem } from '@/utils/rem'
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;
    display: flex;
 
    .statistical-chart {
        margin-left: 10px;
        margin-right: 10px;
        display: flex;
        width: 0;
        flex: 1;
        height: 216px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
}
</style>