| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- const adminMenus = [
- {
- title: '首页展示管理',
- icon: 'index',
- child: [
- {
- key: 'carousel',
- title: '轮播图管理',
- path: '/manger/index/carousel'
- },
- {
- key: 'showing',
- title: '展示块',
- path: '/manger/index/showing'
- },
- {
- key: 'indexProduct',
- title: '展品管理',
- path: '/manger/index/product'
- },
- {
- key: 'indexNews',
- title: '新闻中心管理',
- path: '/manger/index/news'
- },
- ],
- title: '产品管理',
- icon: 'product',
- child: [
- {
- key: 'searchProduct',
- title: '产品检索',
- path: '/manger/product/search'
- },
- {
- key: 'addProduct',
- title: '新增产品',
- path: '/manger/product/add'
- },
- ],
- }
- ]
|