mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 10:26:44 +08:00
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
//产说会列表 定义相关组件
|
|
const List = () => import(/* webpackChunkName: 'productionSay' */ '@/views/ebiz/productionSay/List')
|
|
const createChangeItem = () => import(/* webpackChunkName: 'productionSay' */ '@/views/ebiz/productionSay/createChangeItem')
|
|
const statistics = () => import(/* webpackChunkName: 'productionSay' */ '@/views/ebiz/productionSay/statistics')
|
|
const statisticsItem = () => import(/* webpackChunkName: 'productionSay' */ '@/views/ebiz/productionSay/statisticsItem')
|
|
|
|
export default [
|
|
{
|
|
path: '/productionSay/List',
|
|
name: 'List',
|
|
component: List,
|
|
meta: {
|
|
title: '产说会列表',
|
|
index: 1
|
|
}
|
|
},{
|
|
path: '/productionSay/createChangeItem',
|
|
name: 'createChangeItem',
|
|
component: createChangeItem,
|
|
meta: {
|
|
title: '创建产说会',
|
|
index: 2
|
|
}
|
|
},{
|
|
path: '/productionSay/statistics',
|
|
name: 'statistics',
|
|
component: statistics,
|
|
meta: {
|
|
title: '产说会统计表',
|
|
index: 3
|
|
}
|
|
},{
|
|
path: '/productionSay/statisticsItem',
|
|
name: 'statisticsItem',
|
|
component: statisticsItem,
|
|
meta: {
|
|
title: '查询产说会',
|
|
index: 4
|
|
}
|
|
},
|
|
]
|