123456789101112131415161718192021222324252627282930313233343536373839 |
- const information =[
-
- {
- path:'/yiinfo',
- meta:{
- title:'易资讯'
- },
- component:()=>import('@/components/YiMenu/YiInfo/YiInfo.vue'),
- children:[
- {
- path:'filter',
- name:'infofilter',
- meta:{
- title:'资讯查询'
- },
- component:()=>import('@/components/YiMenu/YiInfo/infoFilter.vue'),
- },
- {
- path:'artdetail/:id',
- name:'artdetail',
- meta:{
- title:'资讯详情'
- },
- component:()=>import('@/components/YiMenu/YiInfo/infoDetail.vue'),
- },
- {
- path:'',
- name:'YiInfo',
- meta:{
- title:'易资讯'
- },
- component:()=>import('@/components/YiMenu/YiInfo/infoList.vue')
- }
- ]
- }
- ];
- export default information;
|