mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 03:26:45 +08:00
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
//产品列表 定义相关组件
|
|
const cooperativeList = () => import(/* webpackChunkName: 'cooperativeUnit' */ '@/views/ebiz/cooperativeUnit/CooperativeList')
|
|
const cooperativeDetail = () => import(/* webpackChunkName: 'cooperativeUnit' */ '@/views/ebiz/cooperativeUnit/CooperativeDetail')
|
|
const CooperativeDocument = () => import(/* webpackChunkName: 'cooperativeUnit' */ '@/views/ebiz/cooperativeUnit/CooperativeDocument')
|
|
|
|
export default [
|
|
{
|
|
path: '/cooperativeUnit/cooperativeList',
|
|
name: 'cooperativeList',
|
|
component: cooperativeList,
|
|
meta: {
|
|
title: '协同单位产品专区',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/cooperativeUnit/cooperativeDetail/:productDetailCode',
|
|
name: 'cooperativeDetail',
|
|
component: cooperativeDetail,
|
|
meta: {
|
|
title: '产品详情',
|
|
index: 2
|
|
}
|
|
},
|
|
{
|
|
path: '/cooperativeUnit/CooperativeDocument',
|
|
name: 'CooperativeDocument',
|
|
component: CooperativeDocument,
|
|
meta: {
|
|
title: '产品资料',
|
|
index: 3
|
|
}
|
|
}
|
|
]
|