|
@@ -487,6 +487,55 @@ export const dynamicRoutes = [{
|
|
activeMenu: '/service/flowPackage'
|
|
activeMenu: '/service/flowPackage'
|
|
}
|
|
}
|
|
}]
|
|
}]
|
|
|
|
+ },
|
|
|
|
+ // 签到管理
|
|
|
|
+ // 抽奖配置
|
|
|
|
+ {
|
|
|
|
+ path: '/registration',
|
|
|
|
+ component: Layout,
|
|
|
|
+ hidden: true,
|
|
|
|
+ permissions: ['registration:lotteryConfig:list'],
|
|
|
|
+ children: [{
|
|
|
|
+ path: 'lotteryConfig/detail',
|
|
|
|
+ component: () => import('@/views/registration/lottery/detail'),
|
|
|
|
+ name: 'lotteryConfigDetail',
|
|
|
|
+ meta: {
|
|
|
|
+ title: '配置详情',
|
|
|
|
+ activeMenu: '/registration/lotteryConfig'
|
|
|
|
+ }
|
|
|
|
+ }]
|
|
|
|
+ },
|
|
|
|
+ // 内容配置
|
|
|
|
+ {
|
|
|
|
+ path: '/registration',
|
|
|
|
+ component: Layout,
|
|
|
|
+ hidden: true,
|
|
|
|
+ permissions: ['registration:contentConfig:list'],
|
|
|
|
+ children: [{
|
|
|
|
+ path: 'contentConfig/detail',
|
|
|
|
+ component: () => import('@/views/registration/content/detail'),
|
|
|
|
+ name: 'contentConfigDetail',
|
|
|
|
+ meta: {
|
|
|
|
+ title: '配置详情',
|
|
|
|
+ activeMenu: '/registration/contentConfig'
|
|
|
|
+ }
|
|
|
|
+ }]
|
|
|
|
+ },
|
|
|
|
+ // 兑换配置
|
|
|
|
+ {
|
|
|
|
+ path: '/registration',
|
|
|
|
+ component: Layout,
|
|
|
|
+ hidden: true,
|
|
|
|
+ permissions: ['registration:exchangeConfig:list'],
|
|
|
|
+ children: [{
|
|
|
|
+ path: 'exchangeConfig/detail',
|
|
|
|
+ component: () => import('@/views/registration/exchange/detail'),
|
|
|
|
+ name: 'exchangeConfigDetail',
|
|
|
|
+ meta: {
|
|
|
|
+ title: '配置详情',
|
|
|
|
+ activeMenu: '/registration/exchangeConfig'
|
|
|
|
+ }
|
|
|
|
+ }]
|
|
}
|
|
}
|
|
]
|
|
]
|
|
|
|
|