噪声新增、修复
This commit is contained in:
@@ -1,58 +1,61 @@
|
||||
<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>
|
||||
<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 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 {
|
||||
export default {
|
||||
name: 'StatisticSoundZone',
|
||||
components: {
|
||||
BaseStatistic,
|
||||
SourceStatistic,
|
||||
// Compare,
|
||||
AverageStatistic,
|
||||
YearStatistic
|
||||
BaseStatistic,
|
||||
SourceStatistic,
|
||||
// Compare,
|
||||
AverageStatistic,
|
||||
YearStatistic,
|
||||
LevelDistribution
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
activeKey: 'base'
|
||||
};
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
return {
|
||||
activeKey: 'base'
|
||||
};
|
||||
|
||||
}
|
||||
},
|
||||
methods: {}
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
Reference in New Issue
Block a user