2022-08-24 11:20:52 +08:00
|
|
|
<template>
|
2022-08-25 10:57:32 +08:00
|
|
|
<div class="gov-comp">
|
|
|
|
|
<div class="col">
|
|
|
|
|
<div class="top"><LeftTop /></div>
|
|
|
|
|
<div class="middle"><LeftMiddle /></div>
|
|
|
|
|
<div class="bottom"><LeftBottom /></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col"><Col2 /></div>
|
|
|
|
|
<div class="col"><Col3 /></div>
|
|
|
|
|
<div class="col"><Col4 /></div>
|
|
|
|
|
</div>
|
2022-08-24 11:20:52 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-08-25 10:57:32 +08:00
|
|
|
import LeftTop from './leftTop.vue'
|
|
|
|
|
import LeftMiddle from './leftMiddle.vue'
|
|
|
|
|
import LeftBottom from './leftBottom.vue'
|
|
|
|
|
import Col2 from './Col2.vue'
|
|
|
|
|
import Col3 from './Col3.vue'
|
|
|
|
|
import Col4 from './Col4.vue'
|
|
|
|
|
export default {
|
|
|
|
|
components: { LeftTop, LeftMiddle, LeftBottom, Col2, Col3, Col4 }
|
|
|
|
|
}
|
2022-08-24 11:20:52 +08:00
|
|
|
</script>
|
|
|
|
|
|
2022-08-24 18:23:44 +08:00
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.gov-comp {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2022-08-25 10:57:32 +08:00
|
|
|
// background: url(../assets/temp/9.png) no-repeat;
|
|
|
|
|
// background-size: 100% 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.col {
|
|
|
|
|
width: 24%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.top {
|
|
|
|
|
height: 33%;
|
|
|
|
|
}
|
|
|
|
|
.middle {
|
2022-08-29 15:32:50 +08:00
|
|
|
height: 45%;
|
2022-08-25 10:57:32 +08:00
|
|
|
}
|
|
|
|
|
.bottom {
|
2022-08-29 15:32:50 +08:00
|
|
|
height: 22%;
|
2022-08-25 10:57:32 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-08-24 18:23:44 +08:00
|
|
|
}
|
|
|
|
|
</style>
|