// +---------------------------------------------------------------------- // | 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/index', name: 'Product', meta: { title: '商品', icon: 'clipboard', }, children: [ { path: 'list', component: () => import('@/views/product/index'), name: 'ProductIndex', meta: { title: '商品列表', icon: '' }, }, { path: 'category', component: () => import('@/views/product/category/index'), name: 'ProductCategory', meta: { title: '商品分类', icon: '' }, }, { path: 'comment', component: () => import('@/views/product/comment/index'), name: 'ProductComment', meta: { title: '商品评论', icon: '' }, }, { path: 'brand', component: () => import('@/views/product/brand/index'), name: 'ProductBrand', meta: { title: '品牌管理', icon: '' }, }, { path: 'guarantee', component: () => import('@/views/product/guarantee/index'), name: 'ProductGuarantee', meta: { title: '保障服务', icon: '' }, }, ], }; export default productRouter;