57 lines
1.4 KiB
Vue
57 lines
1.4 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 v-show="false" key="avg" tab="均值、百分位">-->
|
|
<!-- <avg-statistic></avg-statistic>-->
|
|
<!-- </a-tab-pane>-->
|
|
<a-tab-pane key="ccp" tab="市、县、站点统计">
|
|
<city-county-place></city-county-place>
|
|
</a-tab-pane>
|
|
<a-tab-pane key="area" tab="城区分担浓度统计">
|
|
<area-base></area-base>
|
|
</a-tab-pane>
|
|
<!-- <a-tab-pane key="avg" tab="均值、百分位">-->
|
|
<!-- <avg-statistic></avg-statistic>-->
|
|
<!-- </a-tab-pane>-->
|
|
</a-tabs>
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
import BaseStatistic from "./base.vue";
|
|
import AvgStatistic from "./avg";
|
|
import CityCountyPlace from "./city-county-place";
|
|
import AreaBase from "./area-base";
|
|
export default {
|
|
name: 'StatisticAirIndex',
|
|
components: {
|
|
// eslint-disable-next-line vue/no-unused-components
|
|
BaseStatistic,AvgStatistic,CityCountyPlace,AreaBase
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
activeKey: 'area'
|
|
};
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |