70 lines
1.2 KiB
Vue
70 lines
1.2 KiB
Vue
<template>
|
|
<div class="sourse">
|
|
<div class="left">
|
|
<div class="top">
|
|
<LeftTop />
|
|
</div>
|
|
<div class="center">
|
|
<LeftCenter />
|
|
</div>
|
|
<div class="bottom">
|
|
<LeftBottom />
|
|
</div>
|
|
</div>
|
|
<div class="right">
|
|
<div class="top">
|
|
<RightTop />
|
|
</div>
|
|
<div class="bottom">
|
|
<RightBottom />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import LeftTop from './leftTop.vue'
|
|
import LeftCenter from './leftCenter.vue'
|
|
import LeftBottom from './leftBottom.vue'
|
|
import RightTop from './rightTop.vue'
|
|
import RightBottom from './rightBottom.vue'
|
|
export default {
|
|
components: { LeftTop, LeftCenter,LeftBottom, RightTop, RightBottom }
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.sourse {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #fff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
// background: url(../assets/temp/3.png) no-repeat;
|
|
// background-size: 100% 100%;
|
|
.left {
|
|
width: 32%;
|
|
height: 100%;
|
|
.top {
|
|
height: 47%;
|
|
}
|
|
.center{
|
|
height: 28%;
|
|
}
|
|
.bottom {
|
|
height: 25%;
|
|
}
|
|
}
|
|
.right {
|
|
width: calc(68% - 40px);
|
|
height: 100%;
|
|
.top {
|
|
height: 75%;
|
|
}
|
|
.bottom {
|
|
height: 25%;
|
|
}
|
|
}
|
|
}
|
|
</style>
|