44 lines
1.3 KiB
Vue
44 lines
1.3 KiB
Vue
|
<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>
|