92 lines
1.5 KiB
Vue
92 lines
1.5 KiB
Vue
|
|
<template>
|
||
|
|
<!-- CIM -->
|
||
|
|
<div class="container">
|
||
|
|
<div class="leftBox">
|
||
|
|
<div class="leftTop">
|
||
|
|
<leftTop title="模型" />
|
||
|
|
</div>
|
||
|
|
<div class="leftCenter">
|
||
|
|
<leftCenter title="模型审报" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="centerBox">
|
||
|
|
BIM+
|
||
|
|
</div>
|
||
|
|
<div class="rightBox">
|
||
|
|
<div class="rightTop">
|
||
|
|
<rightTop title="BIM预留接口" />
|
||
|
|
</div>
|
||
|
|
<div class="rightCenter">
|
||
|
|
<rightCenter title="设计变更" />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import leftTop from './leftTop'
|
||
|
|
import leftCenter from './leftCenter'
|
||
|
|
import rightTop from './rightTop'
|
||
|
|
import rightCenter from './rightCenter'
|
||
|
|
export default {
|
||
|
|
components: {
|
||
|
|
leftTop,
|
||
|
|
leftCenter,
|
||
|
|
rightTop,
|
||
|
|
rightCenter
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="less" scoped>
|
||
|
|
.container {
|
||
|
|
display: flex;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background-color: #07162b;
|
||
|
|
background-image: url('~@/assets/images/projectImg/Bimbgc.png');
|
||
|
|
}
|
||
|
|
.topBox {
|
||
|
|
height: 20%;
|
||
|
|
}
|
||
|
|
.leftBox {
|
||
|
|
width: 25%;
|
||
|
|
height: 100%;
|
||
|
|
margin-right: 15px;
|
||
|
|
margin-left: 15px;
|
||
|
|
.leftTop {
|
||
|
|
height: 33%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.leftCenter {
|
||
|
|
height: 33%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.leftBottom {
|
||
|
|
height: 33%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.centerBox {
|
||
|
|
margin-right: 15px;
|
||
|
|
padding-left: 6px;
|
||
|
|
width: 60%;
|
||
|
|
height: 30px;
|
||
|
|
line-height: 30px;
|
||
|
|
font-size: 18px;
|
||
|
|
color: #6ee4f0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.rightBox {
|
||
|
|
width: 25%;
|
||
|
|
height: 100%;
|
||
|
|
.rightTop {
|
||
|
|
height: 33%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
.rightCenter {
|
||
|
|
height: 33%;
|
||
|
|
margin-bottom: 15px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|