forked from drone/command-center-dashboard

chenyao
2025-03-27 4b6bb2df2ea7edde4912b0ca1ccc95710ce3bdb8
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
<template>
    <div class="home-left-index">
        <!--时间 天气-->
        <div class="time-watch">
            <div class="time">2025.03.04 15:30:00</div>
            <div>
                <img src="" alt="">
                <span>阴天</span>
                <span>适合飞行</span>
            </div>
        </div>
    </div>
</template>
 
<script></script>
 
<style scoped lang="scss">
.home-left-index {
    position: absolute;
    top: 88px;
    left: 45px;
    width: 360px;
 
    .time-watch {
        font-size: 14px;
        height: hToV(36);
        display: flex;
        .time {
            font-weight: 400;
            font-size: 14px;
            line-height: hToV(16);
        }
    }
}
</style>