// +---------------------------------------------------------------------- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ] // +---------------------------------------------------------------------- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. // +---------------------------------------------------------------------- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 // +---------------------------------------------------------------------- // | Author: CRMEB Team // +---------------------------------------------------------------------- import Layout from '@/layout'; const productRouter = { path: '/product', component: Layout, redirect: '/product/list', name: 'Product', meta: { title: '商品', icon: 'clipboard', }, children: [ { path: 'list', component: () => import('@/views/product/index'), name: 'ProductList', meta: { title: '商品列表', icon: '' }, }, { path: 'classify', component: () => import('@/views/product/category/index'), name: 'Classify', meta: { title: '商品分类', icon: '' }, }, { path: 'attr', component: () => import('@/views/product/attr/index'), name: 'Attr', meta: { title: '商品规格', icon: '' }, }, { path: 'comment', component: () => import('@/views/product/comment/index'), name: 'Comment', meta: { title: '商品评论', icon: '' }, }, { //id:商品id,isDisabled:是否能编辑(1不能,2能),isCopy:是否是采集商品(1是,2不是) path: 'list/creatProduct/:id?/:isDisabled/:isCopy?', component: () => import('@/views/product/creatProduct/index'), name: 'creatProduct', meta: { title: '商品添加', noCache: true, activeMenu: `/product/list` }, hidden: true, }, { path: 'guarantee/group', component: () => import('@/views/product/guarantee/index'), name: 'guarantee', meta: { title: '保障服务组合', icon: '' }, }, ], }; export default productRouter;