2022-08-02 09:10:00 +08:00
|
|
|
<template>
|
2022-08-02 17:59:10 +08:00
|
|
|
<!-- CIM -->
|
2022-08-02 09:10:00 +08:00
|
|
|
<div class="container">
|
|
|
|
|
<div class="leftBox">
|
|
|
|
|
<div class="leftTop">
|
2022-08-02 17:59:10 +08:00
|
|
|
<leftTop title="问题类型" />
|
2022-08-02 09:10:00 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="leftCenter">
|
2022-08-02 17:59:10 +08:00
|
|
|
<leftCenter title="问题占比" />
|
2022-08-02 09:10:00 +08:00
|
|
|
</div>
|
|
|
|
|
<div class="leftBottom">
|
2022-08-03 10:27:38 +08:00
|
|
|
<leftBottom title="频发问题" />
|
2022-08-02 09:10:00 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="centerBox">
|
2022-08-02 18:06:59 +08:00
|
|
|
<div class="rightTop">
|
|
|
|
|
<rightTop title="质量问题" />
|
2022-08-02 09:10:00 +08:00
|
|
|
</div>
|
2022-08-03 15:14:14 +08:00
|
|
|
<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'
|
2022-08-02 18:06:59 +08:00
|
|
|
import rightTop from './rightTop'
|
2022-08-03 15:14:14 +08:00
|
|
|
import rightBottom from './rightBottom'
|
2022-08-02 09:10:00 +08:00
|
|
|
export default {
|
|
|
|
|
components: {
|
2022-08-02 17:59:10 +08:00
|
|
|
leftTop,
|
|
|
|
|
leftCenter,
|
|
|
|
|
leftBottom,
|
2022-08-02 18:06:59 +08:00
|
|
|
rightTop,
|
2022-08-03 15:14:14 +08:00
|
|
|
rightBottom
|
2022-08-02 17:59:10 +08:00
|
|
|
}
|
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;
|
2022-08-02 18:06:59 +08:00
|
|
|
.rightTop {
|
2022-08-02 17:59:10 +08:00
|
|
|
height: 35%;
|
2022-08-02 09:10:00 +08:00
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
2022-08-03 15:14:14 +08:00
|
|
|
.rightBottom {
|
2022-08-02 17:59:10 +08:00
|
|
|
height: 62%;
|
2022-08-02 09:10:00 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-08-02 17:59:10 +08:00
|
|
|
</style>
|