22 lines
424 B
JavaScript
22 lines
424 B
JavaScript
const reportRouter = [
|
|
{
|
|
path: '/reportIndex',
|
|
name: 'reportIndex',
|
|
component: () => import('@/views/report/reportIndex'),
|
|
meta:{
|
|
title: '道路救援',
|
|
cache: true,
|
|
modalState: false,
|
|
}
|
|
},
|
|
{
|
|
path: '/addressMap',
|
|
name: 'addressMap',
|
|
component: () => import('@/views/report/addressMap'),
|
|
meta:{
|
|
title: '道路救援',
|
|
}
|
|
},
|
|
]
|
|
export default reportRouter
|