71 lines
1.5 KiB
Vue
71 lines
1.5 KiB
Vue
<template>
|
|
<!-- 空气分析 -->
|
|
<Card title="双碳管理">
|
|
<div class="contentBox">
|
|
<div class="leftWeather">
|
|
<div class="image"><img src="@/views/projectAdmin/fourEngin/assets/images/carbon/sunnyone.png" /></div>
|
|
<div class="text"><p>累计降低二氧化碳排放量为</p></div>
|
|
<div class="bottomNumber"><span>259</span>t</div>
|
|
</div>
|
|
|
|
<div class="rightWeather">
|
|
<div class="image"><img src="@/views/projectAdmin/fourEngin/assets/images/carbon/sunnytwo.png" /></div>
|
|
<div class="text"><p>太阳能发电累计节约电量</p></div>
|
|
<div class="bottomNumber"><span>17900</span>kwh</div>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '../components/Card'
|
|
|
|
export default {
|
|
components: { Card },
|
|
data() {
|
|
return {}
|
|
},
|
|
mounted() {},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.contentBox {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #fff;
|
|
.leftWeather,.rightWeather{
|
|
box-sizing: border-box;
|
|
padding-top: 2%;
|
|
width: 50%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: column;
|
|
margin-top: 15px;
|
|
text-align: center;
|
|
}
|
|
|
|
.image{
|
|
width: 60px;
|
|
height: 55px;
|
|
margin-bottom: 20px;
|
|
margin-left: 80px;
|
|
}
|
|
.text{
|
|
margin-bottom: 20px;
|
|
font-size: 10px;
|
|
}
|
|
.bottomNumber{
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
span{
|
|
font-size: 36px;
|
|
}
|
|
}
|
|
|
|
</style>
|