feat(统计业务): 新增用户统计页面及相关组件

- 在路由中添加用户统计页面,支持按日、月、年统计用户数据
- 新增用户统计基础组件,包含数据展示和导出功能
- 实现用户统计明细表格,展示用户注册、登录等信息
- 添加用户留存率统计页面,支持选择月份并展示相关数据
- 集成数据导出功能,支持下载用户统计报表
This commit is contained in:
2026-03-23 10:06:31 +08:00
parent f51dfda073
commit 44124b6931
7 changed files with 704 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
<template>
<div class="mod-config">
<el-tabs v-model="activeTab" type="card">
<el-tab-pane label="首页" name="homeUser" />
<el-tab-pane label="月度" name="monthUser" />
<el-tab-pane label="年度" name="yearUser" />
<el-tab-pane label="留存率" name="retainUser" />
</el-tabs>
<keep-alive>
<component :is="activeTab" />
</keep-alive>
</div>
</template>
<script>
import homeUser from './homeUser'
import monthUser from './monthUser'
import yearUser from './yearUser'
import retainUser from './retainUser'
export default {
components: {
homeUser,
monthUser,
yearUser,
retainUser
},
data() {
return {
activeTab: 'homeUser'
}
}
}
</script>
<style scoped>
.el-form .el-form-item {
margin-bottom: 10px !important;
}
</style>