江河水模块代码提交

This commit is contained in:
shixiaoman
2021-11-18 17:11:38 +08:00
parent f58090ad06
commit 3d7b525650
30 changed files with 3168 additions and 309 deletions

View File

@@ -5,6 +5,18 @@
<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>
@@ -17,17 +29,19 @@
*
*/
import BaseStatistic from "./base.vue";
import AvgStatistic from "./avg";
import CityCountyPlace from "./city-county-place";
import AreaBase from "./area-base";
export default {
name: 'StatisticSoundZone',
name: 'StatisticAirIndex',
components: {
BaseStatistic,
// eslint-disable-next-line vue/no-unused-components
BaseStatistic,AvgStatistic,CityCountyPlace,AreaBase
},
data() {
return {
activeKey: 'base'
activeKey: 'ccp'
};
},