This commit is contained in:
2025-10-31 15:30:59 +08:00
parent 40d66ae230
commit 7026d1fe1d
3 changed files with 214 additions and 28 deletions

View File

@@ -243,6 +243,23 @@ export const dynamicRoutes = [
}
]
},
// 礼金管理
{
path: '/giftcoupon',
component: Layout,
redirect: 'noredirect',
name: 'GiftCoupon',
meta: { title: '礼金管理', icon: 'money' },
permissions: ['system:giftcoupon:list'],
children: [
{
path: 'index',
component: () => import('@/views/system/giftcoupon/index'),
name: 'GiftCouponIndex',
meta: { title: '礼金列表', icon: 'gift' }
}
]
},
// 系统管理
{
path: '/system',