Files
ebiz-h5/src/router/ebiz/productionSay.js
liu.xiaofeng@ebiz-digits.com 279d82f514 页面加载响应慢优化
2023-09-04 16:37:00 +08:00

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
}
},
]