feat: 添加积分日志页面

- 新增积分日志列表页面 src/views/user/integral/index.vue
- 新增积分相关 API src/api/integral.js
- 在路由中添加积分日志菜单
This commit is contained in:
scott
2026-03-20 10:56:53 +08:00
parent 6d3b50cebc
commit 09946536aa
4 changed files with 660 additions and 544 deletions

View File

@@ -44,6 +44,12 @@ const userRouter = {
name: 'Group',
meta: { title: '用户分组', icon: '' },
},
{
path: 'integral',
component: () => import('@/views/user/integral/index'),
name: 'IntegralLog',
meta: { title: '积分日志', icon: '', noCache: true },
},
],
};