85 lines
1.9 KiB
Vue
85 lines
1.9 KiB
Vue
|
|
<!--
|
||
|
|
* @Author: SunTao 328867980@qq.com
|
||
|
|
* @Date: 2024-10-18 09:42:49
|
||
|
|
* @LastEditors: SunTao 328867980@qq.com
|
||
|
|
* @LastEditTime: 2024-10-18 11:04:18
|
||
|
|
* @FilePath: \znxjxt-ui\src\views\big-screen\disease-components\today-inspection.vue
|
||
|
|
* @Description: 病害巡检-今日巡查
|
||
|
|
-->
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<div class="content">
|
||
|
|
<div class="today-left"><span>87</span></div>
|
||
|
|
<div class="today-right">
|
||
|
|
<div class="right-sum"><span>261</span>个</div>
|
||
|
|
<div class="right-rate"><span> 37 </span>%</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "TodayInspection",
|
||
|
|
data() {
|
||
|
|
return {};
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.content {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
display: flex;
|
||
|
|
|
||
|
|
.today-left {
|
||
|
|
width: 45%;
|
||
|
|
height: 100%;
|
||
|
|
color: #ffffff;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding-left: 1.5rem;
|
||
|
|
font-size: 3rem;
|
||
|
|
background-image: url("../../../assets/screen/disease/today-left.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 85%;
|
||
|
|
background-position: 100% 60%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.today-right {
|
||
|
|
width: 55%;
|
||
|
|
height: 100%;
|
||
|
|
padding: 1rem;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
color: #ffffff;
|
||
|
|
|
||
|
|
.right-sum {
|
||
|
|
width: 100%;
|
||
|
|
height: 4rem;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
line-height: 3rem;
|
||
|
|
background-image: url("../../../assets/screen/disease/right-sum.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 100%;
|
||
|
|
background-position: 100% 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.right-rate {
|
||
|
|
width: 100%;
|
||
|
|
height: 4rem;
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
line-height: 3rem;
|
||
|
|
background-image: url("../../../assets/screen/disease/right-rate.png");
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-size: 100%;
|
||
|
|
background-position: 100% 50%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|