| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export const adminMenus = [
- {
- title: '首页展示管理',
- icon: 'index-setting',
- 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-setting',
- child: [
- {
- key: 'searchProduct',
- title: '产品检索',
- path: '/manger/product/search'
- },
- {
- key: 'addProduct',
- title: '新增产品',
- path: '/manger/product/add'
- },
- ],
- }
- ]
|