information.js 858 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. const information =[
  2. {
  3. path:'/yiinfo',
  4. meta:{
  5. title:'易资讯'
  6. },
  7. component:()=>import('@/components/YiMenu/YiInfo/YiInfo.vue'),
  8. children:[
  9. {
  10. path:'filter',
  11. name:'infofilter',
  12. meta:{
  13. title:'资讯查询'
  14. },
  15. component:()=>import('@/components/YiMenu/YiInfo/infoFilter.vue'),
  16. },
  17. {
  18. path:'artdetail/:id',
  19. name:'artdetail',
  20. meta:{
  21. title:'资讯详情'
  22. },
  23. component:()=>import('@/components/YiMenu/YiInfo/infoDetail.vue'),
  24. },
  25. {
  26. path:'',
  27. name:'YiInfo',
  28. meta:{
  29. title:'易资讯'
  30. },
  31. component:()=>import('@/components/YiMenu/YiInfo/infoList.vue')
  32. }
  33. ]
  34. }
  35. ];
  36. export default information;