Blame view

src/router/modules/manufacturer.js 697 Bytes
fe44789e3   BigBoss   修改路由,新增页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  import Layout from '@/layout'
  
  const manufacturerRouter = {
    path: '/manufacturer',
    component: Layout,
    redirect: '/manufacturer/page',
    alwaysShow: true, // will always show the root menu
    name: 'manufacturer',
    meta: {
      title: '厂商',
      icon: 'tree-table',
      roles: ['admin', 'assistant'] // you can set roles in root nav
    },
    children: [{
      path: 'manufacturerpage',
      component: () => import('@/views/manufacturer/manufacturer'),
      name: 'manufacturer',
      meta: {
        title: '厂商管理',
        icon: 'tree-table',
        roles: ['admin', 'assistant'] // or you can only set roles in sub nav
      }
    }]
  }
  export default manufacturerRouter