62 lines
1.1 KiB
Vue
62 lines
1.1 KiB
Vue
<template>
|
|
<div class="cim">
|
|
<div class="between">
|
|
<div class="top">
|
|
<LeftTop />
|
|
</div>
|
|
<div class="bottom">
|
|
<LeftBottom />
|
|
</div>
|
|
</div>
|
|
<div class="center">
|
|
<Center />
|
|
</div>
|
|
<div class="between">
|
|
<div class="top">
|
|
<RightTop />
|
|
</div>
|
|
<div class="bottom">
|
|
<RightBottom />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import LeftTop from './leftTop.vue'
|
|
import RightTop from './rightTop.vue'
|
|
import RightBottom from './rightBottom.vue'
|
|
import Center from './center.vue'
|
|
import LeftBottom from './leftBottom.vue'
|
|
export default {
|
|
components: { LeftTop, RightTop, RightBottom,Center ,LeftBottom}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.cim {
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #fff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
// background: url(../assets/temp/2.png) no-repeat;
|
|
// background-size: 100% 100%;
|
|
.between {
|
|
width: 20%;
|
|
height: 100%;
|
|
.top {
|
|
height: 50%;
|
|
}
|
|
.bottom {
|
|
height: 50%;
|
|
}
|
|
}
|
|
.center {
|
|
width: calc(101% - 40px);
|
|
height: 98%;
|
|
margin: 4px 5px 0 13px;
|
|
}
|
|
}
|
|
</style>
|