40 lines
745 B
Vue
40 lines
745 B
Vue
|
|
<template>
|
||
|
|
<div class="atmospheric-module">
|
||
|
|
<peak-secondary-title :title="title"/>
|
||
|
|
<div class="charts-info">
|
||
|
|
<peak-air-quality/>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import PeakSecondaryTitle from "@/components/peak-coal-monitoring/PeakSecondaryTitle";
|
||
|
|
import PeakAirQuality from "@/components/peak-coal-monitoring/PeakAirQuality";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: "DeviceOnlineRate",
|
||
|
|
components: {PeakAirQuality, PeakSecondaryTitle},
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
title: '治理设备在线率'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="less">
|
||
|
|
@import "../../assets/styles/mixin";
|
||
|
|
|
||
|
|
.atmospheric-module {
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
.flex-column;
|
||
|
|
|
||
|
|
.charts-info {
|
||
|
|
flex: 1;
|
||
|
|
height: 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|