Files
nuttyreading-master-html/src/views/modules/statisticsBusiness/vipStatistics/expiresThreeMonths.vue
chenghuan 34f862bd4d feat(统计业务): 新增VIP临到期统计页面
- 添加近3个月和近半年临到期的VIP统计页面
- 引入通用的统计基础组件,支持数据展示和导出功能
- 更新主统计页面以集成新统计选项
2026-03-13 17:47:45 +08:00

15 lines
242 B
Vue

<template>
<expires-statistics-base
title="近3个月临到期"
:month="3"
/>
</template>
<script>
import expiresStatisticsBase from './expiresStatisticsBase'
export default {
components: { expiresStatisticsBase }
}
</script>