176 lines
4.2 KiB
Vue
176 lines
4.2 KiB
Vue
<template>
|
|
<div class="courtMain">
|
|
<div class="left">
|
|
<div class="leftOne">
|
|
<div class="title">智慧运维</div>
|
|
<div class="courtHouse">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="leftTwo">
|
|
<div class="caseTitle">
|
|
|
|
</div>
|
|
<div id="caseEcharts"></div>
|
|
</div>
|
|
<div class="leftThree"></div>
|
|
</div>
|
|
<div class="right"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "court",
|
|
data() {
|
|
return {
|
|
courtList: [
|
|
{
|
|
name: "空闲中",
|
|
count: "7",
|
|
},
|
|
{
|
|
name: "已开庭",
|
|
count: "15",
|
|
},
|
|
{
|
|
name: "已预约",
|
|
count: "17",
|
|
},
|
|
{
|
|
name: "法官办公室",
|
|
count: "86",
|
|
},
|
|
], // 智慧法庭小房子
|
|
houseList: ["blueHouse", "redHouse", "yellowHouse","orangeHouse"],
|
|
};
|
|
},
|
|
mounted() {},
|
|
methods: {},
|
|
watch: {},
|
|
components: {},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
@fontsize: 0.6rem;
|
|
.courtMain {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0 0.3% 0 0.3%;
|
|
box-sizing: border-box;
|
|
.left {
|
|
width: 25.5%;
|
|
height: 95%;
|
|
padding: 0.5% 0.3% 1% 0.3%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
background: url(../assets/images/leftKuang.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
.leftOne {
|
|
width: 100%;
|
|
height: 25%;
|
|
.courtHouse {
|
|
height: calc(100% - 30%);
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
.courtData{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
height: 85%;
|
|
width: 12%;
|
|
.blueHouse {
|
|
background: url(../assets/images/blueHouse.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 10%;
|
|
}
|
|
.redHouse {
|
|
background: url(../assets/images/redHouse.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 10%;
|
|
}
|
|
.yellowHouse {
|
|
background: url(../assets/images/yellowHouse.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 10%;
|
|
}
|
|
.orangeHouse {
|
|
background: url(../assets/images/orangeHouse.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 10%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.leftTwo {
|
|
width: 100%;
|
|
height: 35%;
|
|
position: relative;
|
|
#caseEcharts{
|
|
width: 100%;
|
|
height: calc(100% - 16%);
|
|
border: 1px solid blue;
|
|
}
|
|
}
|
|
.leftThree {
|
|
width: 100%;
|
|
height: 40%;
|
|
border: 1px solid white;
|
|
}
|
|
}
|
|
.right {
|
|
width: 25.5%;
|
|
height: 95%;
|
|
padding: 0.5% 0.3% 1% 0.3%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
background: url(../assets/images/leftKuang.png) no-repeat;
|
|
background-size: 100% 100%;
|
|
}
|
|
}
|
|
.title {
|
|
width: 100%;
|
|
height: 30%;
|
|
background: url("../assets/images/title.png") no-repeat;
|
|
background-size: 100% 100%;
|
|
color: #fff;
|
|
font-size: 0.7rem;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 12%;
|
|
box-sizing: border-box;
|
|
}
|
|
.caseTitle{
|
|
width: 23%;
|
|
height: 10%;
|
|
background: url("../assets/images/faTingImg/anjianTitle.png") no-repeat;
|
|
background-size: 100% 100%;
|
|
color: #fff;
|
|
font-size: 0.8rem;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-left: 5%;
|
|
box-sizing: border-box;
|
|
margin-top: 2%;
|
|
}
|
|
</style> |