27 lines
495 B
Vue
27 lines
495 B
Vue
|
|
<template>
|
||
|
|
<div class="pollution-information">
|
||
|
|
<peak-secondary-title :title="title"/>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import PeakSecondaryTitle from "@/components/peak-coal-monitoring/PeakSecondaryTitle";
|
||
|
|
export default {
|
||
|
|
name: "PollutionInformation",
|
||
|
|
components: {PeakSecondaryTitle},
|
||
|
|
data(){
|
||
|
|
return{
|
||
|
|
title: '污染物信息总览'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="less">
|
||
|
|
@import "assets/styles/mixin";
|
||
|
|
.pollution-information{
|
||
|
|
height: 100%;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
</style>
|