农村饮用水

This commit is contained in:
weicw
2021-09-03 15:56:10 +08:00
parent 20cf7c4d9b
commit d5edf639d5
20 changed files with 5410 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
<template>
<div class="ele-body">
<a-card :bordered="false">
<a-tabs v-model:activeKey="activeKey">
<a-tab-pane key="base" tab="总览">
<base-statistic></base-statistic>
</a-tab-pane>
<a-tab-pane key="source-statistic" tab="声源">
<source-statistic></source-statistic>
</a-tab-pane>
<a-tab-pane key="average" tab="城区">
<average-statistic></average-statistic>
</a-tab-pane>
<!-- <a-tab-pane key="quarter" tab="季度报告">
<quarter-statistic></quarter-statistic>
</a-tab-pane> -->
<a-tab-pane key="year-compare" tab="市">
<year-statistic></year-statistic>
</a-tab-pane>
</a-tabs>
</a-card>
</div>
</template>
<script>
/**
*
*
*
*/
import BaseStatistic from "./base.vue";
// import QuarterStatistic from "./quarter.vue";
// import Compare from "./compare.vue";
import AverageStatistic from "./average.vue";
import SourceStatistic from "./source.vue";
import YearStatistic from "./year.vue";
export default {
name: 'StatisticSoundZone',
components: {
BaseStatistic,
SourceStatistic,
// Compare,
AverageStatistic,
YearStatistic
},
data() {
return {
activeKey: 'base'
};
},
methods: {
}
}
</script>
<style scoped>
</style>