| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /**
- * Points Module - 积分管理模块
- */
- export default {
- // 路由配置
- routes: {
- path: '/points',
- name: 'PointsModule',
- component: () => import('@/layout/index.vue'),
- redirect: '/points/log',
- meta: {
- title: '积分管理',
- icon: 'Coin',
- permission: 'points'
- },
- children: [
- {
- path: 'log',
- name: 'PointsLog',
- component: () => import('./views/PointsLog.vue'),
- meta: {
- title: '积分明细',
- icon: 'List',
- keepAlive: true
- }
- }
- ]
- },
- // 菜单配置
- menus: [
- {
- path: '/points',
- title: '积分管理',
- icon: 'Coin',
- permission: 'points',
- children: [
- {
- path: '/points/log',
- title: '积分明细',
- icon: 'List'
- }
- ]
- }
- ]
- }
|