42 lines
606 B
Vue
42 lines
606 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-tabs>
|
|
</a-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
import BaseStatistic from "./base.vue";
|
|
export default {
|
|
name: 'StatisticAirIndex',
|
|
components: {
|
|
BaseStatistic,
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
activeKey: 'base'
|
|
};
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |