| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- export const adminMenus = [
- {
- title: '首页展示管理',
- icon: 'index-setting',
- child: [
- {
- key: 'carousel',
- title: '轮播图管理',
- path: '/manger/carousel'
- },
- {
- key: 'showing',
- title: '展示块',
- path: '/manger/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'
- },
- {
- key: 'addProduct',
- title: '新增产品',
- path: '/manger/product/add'
- },
- {
- key: 'productType',
- title: '产品类别管理',
- path: '/manger/product/type'
- }
- ],
- },
- {
- title: '文章管理',
- icon: 'news-setting',
- child: [
- {
- key: 'searchPages',
- title: '文章中心',
- path: '/manger/news'
- },
- {
- key: 'addPage',
- title: '新增文章',
- path: '/manger/news/add'
- },
- {
- key: 'productType',
- title: '产品类别管理',
- path: '/manger/product/type'
- }
- ],
- }
- ]
|