49 lines
1.0 KiB
Vue
Raw Normal View History

<template>
<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>
</template>
<script>
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 }
}
</script>
<style lang="less" scoped>
.gov-comp {
width: 100%;
height: 100%;
// 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 {
height: 45%;
}
.bottom {
height: 22%;
}
}
}
</style>