2022-08-24 19:30:54 +08:00
|
|
|
<template>
|
|
|
|
|
<Card title="环境监测">
|
2022-08-31 10:06:58 +08:00
|
|
|
<!-- 环境监测 -->
|
|
|
|
|
<div class="contentBox">
|
|
|
|
|
<div class="left">
|
|
|
|
|
<img src="../assets/images/common/echart_orange.png" alt />
|
|
|
|
|
<p class="num1">45%</p>
|
|
|
|
|
<div class="text">
|
|
|
|
|
<p>环境总数/环境巡检率</p>
|
|
|
|
|
<p style="color:#d7d9dc;font-size:14px">
|
|
|
|
|
200/
|
|
|
|
|
<span style="color:#da580d">45</span>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="right">
|
|
|
|
|
<img src="../assets/images/common/echart_blue.png" alt />
|
|
|
|
|
<p class="num1">36%</p>
|
|
|
|
|
<div class="text">
|
|
|
|
|
<p>环境总数/环境巡检率</p>
|
|
|
|
|
<p style="color:#d7d9dc;font-size:14px">
|
|
|
|
|
200/
|
|
|
|
|
<span style="color:#72bdc9;">36</span>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-08-24 19:30:54 +08:00
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2022-08-31 10:06:58 +08:00
|
|
|
import Card from "../components/Card.vue";
|
2022-08-24 19:30:54 +08:00
|
|
|
export default {
|
|
|
|
|
components: { Card }
|
2022-08-31 10:06:58 +08:00
|
|
|
};
|
2022-08-24 19:30:54 +08:00
|
|
|
</script>
|
|
|
|
|
|
2022-08-31 10:06:58 +08:00
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.contentBox {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
2022-09-08 11:10:59 +08:00
|
|
|
margin-top: 2%;
|
2022-08-31 10:06:58 +08:00
|
|
|
|
|
|
|
|
.left,
|
|
|
|
|
.right {
|
|
|
|
|
height: 65%;
|
|
|
|
|
margin-right: 10%;
|
|
|
|
|
position: relative;
|
|
|
|
|
color: #c5c7cc;
|
|
|
|
|
.num1 {
|
|
|
|
|
position: absolute;
|
2022-09-06 16:42:42 +08:00
|
|
|
top: 45%;
|
2022-08-31 10:06:58 +08:00
|
|
|
left: 43%;
|
|
|
|
|
}
|
|
|
|
|
.text {
|
2022-09-06 16:42:42 +08:00
|
|
|
margin-top: 5%;
|
2022-08-31 10:06:58 +08:00
|
|
|
font-size: 14px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|