我们发布啦

This commit is contained in:
张乐
2020-08-13 16:12:57 +08:00
parent a3e1c38d27
commit c0cec49f41
1885 changed files with 376936 additions and 2 deletions

View File

@@ -0,0 +1,47 @@
import Layout from '@/layout'
const storeRouter = {
path: '/store',
component: Layout,
redirect: '/store/index',
name: 'Store',
meta: {
title: '商品',
icon: 'clipboard'
},
children: [
{
path: 'index',
component: () => import('@/views/store/index'),
name: 'StoreIndex',
meta: { title: '商品管理', icon: '' }
},
{
path: 'sort',
component: () => import('@/views/store/sort/index'),
name: 'Sort',
meta: { title: '商品分类', icon: '' }
},
{
path: 'attr',
component: () => import('@/views/store/storeAttr/index'),
name: 'SortAttr',
meta: { title: '商品规格', icon: '' }
},
{
path: 'comment',
component: () => import('@/views/store/storeComment/index'),
name: 'StoreComment',
meta: { title: '商品评论', icon: '' }
},
{
path: 'list/creatProduct/:id?',
component: () => import('@/views/store/creatStore/index'),
name: 'SortCreat',
meta: { title: '商品添加', noCache: true, activeMenu: `/store/index` },
hidden: true
}
]
}
export default storeRouter