83 lines
1.4 KiB
Vue
Raw Normal View History

2022-08-02 09:10:00 +08:00
<template>
<!-- CIM -->
2022-08-02 09:10:00 +08:00
<div class="container">
<div class="leftBox">
<div class="leftTop">
<leftTop title="问题类型" />
2022-08-02 09:10:00 +08:00
</div>
<div class="leftCenter">
<leftCenter title="问题占比" />
2022-08-02 09:10:00 +08:00
</div>
<div class="leftBottom">
<leftBottom title="频发问题" />
2022-08-02 09:10:00 +08:00
</div>
</div>
<div class="centerBox">
<div class="rightTop">
<rightTop title="质量问题" />
2022-08-02 09:10:00 +08:00
</div>
<div class="rightBottom">
<rightBottom title="问题趋势" />
2022-08-02 09:10:00 +08:00
</div>
</div>
</div>
</template>
<script>
import leftTop from './leftTop'
import leftCenter from './leftCenter'
import leftBottom from './leftBottom'
import rightTop from './rightTop'
import rightBottom from './rightBottom'
2022-08-02 09:10:00 +08:00
export default {
components: {
leftTop,
leftCenter,
leftBottom,
rightTop,
rightBottom
}
2022-08-02 09:10:00 +08:00
}
</script>
<style lang="less" scoped>
.container {
display: flex;
width: 100%;
height: 100%;
background-color: #07162b;
}
.topBox {
height: 20%;
}
.leftBox {
width: 25%;
height: 100%;
margin-right: 15px;
margin-left: 15px;
.leftTop {
height: 35%;
margin-bottom: 15px;
}
.leftCenter {
height: 30%;
margin-bottom: 15px;
}
.leftBottom {
height: 30%;
}
}
.centerBox {
width: 70%;
height: 100%;
margin-right: 15px;
.rightTop {
height: 35%;
2022-08-02 09:10:00 +08:00
margin-bottom: 15px;
}
.rightBottom {
height: 62%;
2022-08-02 09:10:00 +08:00
}
}
</style>