|
@@ -168,6 +168,25 @@ export const constantRoutes = [
|
|
|
meta: { title: '创建套系', icon: 'collectionadd' }
|
|
|
}
|
|
|
]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/publisherList',
|
|
|
+ component: Layout,
|
|
|
+ meta: { title: '发行方管理', icon : "user" },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: 'publisherList',
|
|
|
+ component: () => import('@/views/publisher/publisherList'),
|
|
|
+ name: 'publisherList',
|
|
|
+ meta: { title: '发行方列表', icon: 'list' }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'addPublisher',
|
|
|
+ component: () => import('@/views/publisher/addPublisher'),
|
|
|
+ name: 'addPublisher',
|
|
|
+ meta: { title: '创建发行方', icon: 'build' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
|
|
|
]
|