更新重点人员大屏

This commit is contained in:
2025-04-15 18:56:50 +08:00
parent ed4849b193
commit 2703819710
8 changed files with 362 additions and 21 deletions

View File

@ -0,0 +1,44 @@
<template>
<div class="homeBox">
<!-- 头部 -->
<Head type="importantPerson"></Head>
<!-- 内容 -->
<div class="home-contant">
<!-- 左边 -->
<div class="home-aside asideL" style="left:0">
<ImportantPerson></ImportantPerson>
</div>
<!-- 右边 -->
<div class="home-aside asideR" style="right:0">
<div class="aside-middle mt60">
<Zdrqhd></Zdrqhd>
</div>
<div class="aside-middle">
<Yjclqktj></Yjclqktj>
</div>
</div>
</div>
</div>
</template>
<script setup>
import Head from '@/views/home/layout/head.vue';
import ImportantPerson from './model/importantPerson.vue'
import Zdrqhd from './model/zdrqhd.vue'
import Yjclqktj from './model/yjclqktj.vue'
</script>
<style lang="scss" scoped>
@import "@/assets/css/homeScreen.scss";
.asideL{
background: linear-gradient( to right, rgba(78, 98, 132,0.8) 0%, #fff 100%);
}
.asideR{
background: linear-gradient( to left, rgba(78, 98, 132,0.8) 0%, #fff 100%);
}
.homeBox .home-contant .home-aside .aside-middle{
height: calc((100% - 60px)/2);
}
.transition {
transition: all 0.5s;
}
</style>