forked from drone/command-center-dashboard

罗广辉
2025-03-28 fb3136514444c11c63d499a360fa5cb5f6815923
src/views/Home/components/HomeLeft/HomeLeft.vue
@@ -5,36 +5,31 @@
            <div class="time">2025.03.04 15:30:00</div>
            <div class="line"></div>
            <div class="weather">
                <img src="@/assets/images/tq.png" alt="">
        <img src="@/assets/images/tq.png" alt="" />
                <span class="tq">阴天</span>
                <span class="qk">适合飞行</span>
            </div>
        </div>
        <!--机巢概况-->
        <common-title style="margin-left: 14px;"></common-title>
        <overview-next></overview-next>
        <!--巡检任务情况-->
        <common-title title="巡检任务情况" style="margin-left: 14px;"></common-title>
        <inspection-rask-details></inspection-rask-details>
    </div>
</template>
<script setup>
import CommonTitle from '@/components/CommonTitle.vue';
import OverviewNext from './OverviewNext.vue';
import InspectionRaskDetails from './InspectionRaskDetails.vue';
</script>
<style scoped lang="scss">
.home-left {
    position: absolute;
    top: 88px;
    color: #E7F5FF;
  color: #e7f5ff;
    .time-weather {
        margin-left: 45px;
        width: 260px;
    width: 310px;
        font-size: 14px;
        height: 36px;
        line-height: 36px;
@@ -42,7 +37,7 @@
        justify-content: space-between;
        align-items: center;
        .line {
            border: 1px solid #FFFFFF;
      border: 1px solid #ffffff;
            height: 10px;
            opacity: 0.5;
        }
@@ -53,11 +48,11 @@
            }
            .tq {
                margin: 0 5px;
                color: #E7F5FF;
        color: #e7f5ff;
            }
            .qk {
                margin-left: 5px;
                color: #04F043;
        color: #04f043;
           }
        }
    }