43 lines
780 B
Vue
43 lines
780 B
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="quarter" tab="季度报告">
|
|
<quarter-statistic></quarter-statistic>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
|
|
</a-card>
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseStatistic from "./base.vue";
|
|
import QuarterStatistic from "./quarter.vue";
|
|
export default {
|
|
name: 'StatisticSoundRoad',
|
|
components: {
|
|
BaseStatistic,
|
|
QuarterStatistic
|
|
},
|
|
data() {
|
|
return {
|
|
activeKey: 'quarter'
|
|
};
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |