You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
655 B
30 lines
655 B
|
4 months ago
|
<!--
|
||
|
|
* 服务申报统计
|
||
|
|
*
|
||
|
|
* @Author: wzh
|
||
|
|
* @Date: 2025-12-24 14:44:06
|
||
|
|
* @Copyright 1.0
|
||
|
|
-->
|
||
|
|
<template>
|
||
|
|
<div class="service-application-count">
|
||
|
|
<a-tabs v-model:activeKey="activeTab" type="card">
|
||
|
|
<!-- 季度统计 -->
|
||
|
|
<a-tab-pane key="quarter" tab="季度统计">
|
||
|
|
<QuarterStatistics />
|
||
|
|
</a-tab-pane>
|
||
|
|
</a-tabs>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
import { ref } from 'vue';
|
||
|
|
import QuarterStatistics from '/@/components/system/service-count/quarter-statistics.vue';
|
||
|
|
const activeTab = ref('quarter');
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.service-application-count {
|
||
|
|
padding: 16px;
|
||
|
|
background: #fff;
|
||
|
|
}
|
||
|
|
</style>
|