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 {
| margin-top: 12px;
| margin-left: 45px;
| // border: 1px springgreen solid;
| width: 360px;
|
| .time-watch {
| font-size: 14px;
| height: height(36);
| display: flex;
| .time {
| font-weight: 400;
| font-size: 14px;
| line-height: height(16);
| }
| }
| }
| </style>
|
|