mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-25 06:02:52 +08:00
35 lines
876 B
JavaScript
35 lines
876 B
JavaScript
//保全 定义相关组件
|
|
const congratulationTop = () => import('@/views/ebiz/congratulation/CongratulationTop')
|
|
const congratulationList = () => import('@/views/ebiz/congratulation/CongratulationList')
|
|
const congratulationPreview = () => import('@/views/ebiz/congratulation/CongratulationPreview')
|
|
|
|
export default [
|
|
{
|
|
path: '/congratulation/congratulationTop',
|
|
name: 'congratulationTop',
|
|
component: congratulationTop,
|
|
meta: {
|
|
title: '上头条',
|
|
index: 1
|
|
}
|
|
},
|
|
{
|
|
path: '/congratulation/congratulationList',
|
|
name: 'congratulationList',
|
|
component: congratulationList,
|
|
meta: {
|
|
title: '大单榜',
|
|
index: 2
|
|
}
|
|
},
|
|
{
|
|
path: '/congratulation/congratulationPreview',
|
|
name: 'congratulationPreview',
|
|
component: congratulationPreview,
|
|
meta: {
|
|
title: '大单榜',
|
|
index: 3
|
|
}
|
|
}
|
|
]
|