From 295eb3cc87aaa5176d64a4ef985cdad0bfefae9a Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Mon, 31 Mar 2025 08:35:00 +0800
Subject: [PATCH] 增加单个机巢页面
---
src/views/Home/components/HomeLeft/HomeLeft.vue | 89 +++++++-------------------------------------
1 files changed, 15 insertions(+), 74 deletions(-)
diff --git a/src/views/Home/components/HomeLeft/HomeLeft.vue b/src/views/Home/components/HomeLeft/HomeLeft.vue
index 33cddc5..db2e4b9 100644
--- a/src/views/Home/components/HomeLeft/HomeLeft.vue
+++ b/src/views/Home/components/HomeLeft/HomeLeft.vue
@@ -1,84 +1,25 @@
<template>
- <div class="home-left-index">
- <!--时间 天气-->
- <div class="time-weather">
- <div class="time">2025.03.04 15:30:00</div>
- <div class="line"></div>
- <div class="weather">
- <img src="@/assets/images/tq.png" alt="">
- <span class="tq">阴天</span>
- <span class="qk">适合飞行</span>
- </div>
- </div>
- <!--机巢概况-->
- <div class="overview-nest">
- <common-title></common-title>
- <div class="overview-warp">
- <div></div>
- </div>
- </div>
- </div>
+ <div class="home-left">
+ <!--时间 天气-->
+ <common-weather></common-weather>
+ <!--机巢概况-->
+ <overview-next></overview-next>
+ <!--巡检任务情况-->
+ <inspection-rask-details></inspection-rask-details>
+ </div>
</template>
<script setup>
-import { hToV, wToR } from '@/utils/pxConver';
-import CommonTitle from '@/components/CommonTitle.vue';
-
+import OverviewNext from './OverviewNext.vue';
+import InspectionRaskDetails from './InspectionRaskDetails.vue';
+import CommonWeather from '@/components/CommonWeather.vue';
</script>
<style scoped lang="scss">
-.home-left-index {
- position: absolute;
-
- top: 88px;
- // left: 45px;
- // width: 390px;
- color: #E7F5FF;
-
- .time-weather {
- margin-left: 45px;
- width: 260px;
- font-size: 14px;
- height: hToV(36);
- line-height: hToV(36);
- display: flex;
- justify-content: space-between;
- align-items: center;
- .line {
- border: 1px solid #FFFFFF;
- height: hToV(10);
- opacity: 0.5;
- }
- .weather {
- img {
- width: 20px;
- height: hToV(20);
- }
- .tq {
- margin: 0 5px;
- color: #E7F5FF;
- }
- .qk {
- margin-left: 5px;
- color: #04F043;
- }
- }
- }
- .overview-nest {
- // border: 1px solid red;
- width: 404px;
-
- .overview-warp {
- // border: 1px solid #04F043;
- margin-left: 20px;
- margin: 16px;
- width: 390px;
- height: hToV(415);
- background: linear-gradient( 90deg, rgba(31,62,122,0) 0%, rgba(31,62,122,0.35) 21%, #1F3E7A 100%);
- border-radius: 0px 0px 0px 0px;
- opacity: 0.85;
- }
- }
+.home-left {
+ position: absolute;
+ top: 88px;
+ color: #e7f5ff;
}
</style>
--
Gitblit v1.9.3