56 lines
1.1 KiB
Vue
56 lines
1.1 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="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="同比">
|
|
<compare></compare>
|
|
</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"
|
|
|
|
export default {
|
|
name: 'StatisticSoundRoad',
|
|
components: {
|
|
BaseStatistic,
|
|
// QuarterStatistic,
|
|
Compare,
|
|
AverageStatistic
|
|
},
|
|
data() {
|
|
return {
|
|
activeKey: 'base'
|
|
};
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |