// +---------------------------------------------------------------------- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ] // +---------------------------------------------------------------------- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved. // +---------------------------------------------------------------------- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权 // +---------------------------------------------------------------------- // | Author: CRMEB Team // +---------------------------------------------------------------------- /** When your routing table is too long, you can split it into small modules **/ import Layout from '@/layout'; const videoChannelRouter = { path: '/videoChannel', component: Layout, redirect: '/draftList/list', name: 'VideoChannel', meta: { title: '视频号', icon: 'clipboard', }, children: [ { path: 'list', component: () => import('@/views/videoChannel/videoList/index'), name: 'VideoChannelList', meta: { title: '商品列表', icon: '', noCache: true }, }, { path: 'draftList', component: () => import('@/views/videoChannel/draftList/index'), name: 'draftList', meta: { title: '草稿列表', icon: '', noCache: true }, }, { path: 'apply', component: () => import('@/views/videoChannel/apply/index'), name: 'videoApply', meta: { title: '申请接入', icon: '', noCache: true }, }, { path: 'weChatcategory', component: () => import('@/views/videoChannel/weChatcategoryAndBrand/index'), name: 'videoWeChatcategory', meta: { title: '微信商品类目', icon: '', noCache: true }, }, ], }; export default videoChannelRouter;