2022-08-08 19:02:56 +08:00
|
|
|
<template>
|
|
|
|
|
<!-- CIM -->
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="leftBox">
|
|
|
|
|
<div class="leftTop">
|
|
|
|
|
<leftTop title="模型" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="leftCenter">
|
|
|
|
|
<leftCenter title="模型审报" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="centerBox">
|
2022-08-16 18:50:58 +08:00
|
|
|
<iframe src="/bim.html" frameborder="0" width="100%" height="100%"></iframe>
|
2022-08-08 19:02:56 +08:00
|
|
|
</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'
|
2022-08-16 18:50:58 +08:00
|
|
|
|
2022-08-08 19:02:56 +08:00
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
leftTop,
|
|
|
|
|
leftCenter,
|
|
|
|
|
rightTop,
|
|
|
|
|
rightCenter
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.container {
|
2022-08-16 18:50:58 +08:00
|
|
|
position: relative;
|
2022-08-08 19:02:56 +08:00
|
|
|
display: flex;
|
2022-08-16 18:50:58 +08:00
|
|
|
justify-content: space-between;
|
2022-08-08 19:02:56 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: #07162b;
|
|
|
|
|
background-image: url('~@/assets/images/projectImg/Bimbgc.png');
|
|
|
|
|
}
|
|
|
|
|
.topBox {
|
|
|
|
|
height: 20%;
|
|
|
|
|
}
|
|
|
|
|
.leftBox {
|
2022-08-16 18:50:58 +08:00
|
|
|
position: relative;
|
2022-08-08 19:02:56 +08:00
|
|
|
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%;
|
|
|
|
|
}
|
2022-08-16 18:50:58 +08:00
|
|
|
z-index: 2;
|
2022-08-08 19:02:56 +08:00
|
|
|
}
|
|
|
|
|
.centerBox {
|
2022-08-16 18:50:58 +08:00
|
|
|
position: absolute;
|
2022-08-08 19:02:56 +08:00
|
|
|
margin-right: 15px;
|
|
|
|
|
padding-left: 6px;
|
2022-08-16 18:50:58 +08:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2022-08-08 19:02:56 +08:00
|
|
|
line-height: 30px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #6ee4f0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rightBox {
|
2022-08-16 18:50:58 +08:00
|
|
|
position: relative;
|
2022-08-08 19:02:56 +08:00
|
|
|
width: 25%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
.rightTop {
|
|
|
|
|
height: 33%;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
.rightCenter {
|
|
|
|
|
height: 33%;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
2022-08-16 18:50:58 +08:00
|
|
|
z-index: 2;
|
2022-08-08 19:02:56 +08:00
|
|
|
}
|
|
|
|
|
</style>
|