63 lines
1.7 KiB
Vue
63 lines
1.7 KiB
Vue
<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-tab-pane key="level-distribution" tab="等级分布">
|
|
<level-distribution></level-distribution>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
import BaseStatistic from "./base.vue";
|
|
import AverageStatistic from "./average.vue";
|
|
import SourceStatistic from "./source.vue";
|
|
import YearStatistic from "./year.vue";
|
|
import LevelDistribution from "./level-distribution";
|
|
|
|
export default {
|
|
name: 'StatisticSoundZone',
|
|
components: {
|
|
BaseStatistic,
|
|
SourceStatistic,
|
|
// Compare,
|
|
AverageStatistic,
|
|
YearStatistic,
|
|
LevelDistribution
|
|
},
|
|
data() {
|
|
return {
|
|
activeKey: 'base'
|
|
};
|
|
|
|
},
|
|
methods: {}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |