winRouter.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. export const winRouter = [
  2. {
  3. path: '/introduceIndex',
  4. component: () => import('../../views/win/introduceIndex.vue'),
  5. name: 'introduceIndex',
  6. meta: {
  7. title: '集团介绍',
  8. },
  9. },
  10. {
  11. path: '/newsIndex',
  12. component: () => import('../../views/win/newsIndex.vue'),
  13. name: 'newsIndex',
  14. meta: {
  15. title: '集团新闻',
  16. },
  17. },
  18. {
  19. path: '/messIndex',
  20. component: () => import('../../views/win/messIndex.vue'),
  21. name: 'messIndex',
  22. meta: {
  23. title: '信息公开',
  24. },
  25. },
  26. {
  27. path: '/popularwillIndex',
  28. component: () => import('../../views/win/popularwillIndex.vue'),
  29. name: 'popularwillIndex',
  30. meta: {
  31. title: '民意征集',
  32. },
  33. },
  34. {
  35. path: '/watersupplyIndex',
  36. component: () => import('../../views/win/watersupplyIndex.vue'),
  37. name: 'watersupplyIndex',
  38. meta: {
  39. title: '供水信息',
  40. },
  41. },
  42. {
  43. path: '/inwaterIndex',
  44. component: () => import('../../views/win/inwaterIndex.vue'),
  45. name: 'inwaterIndex',
  46. meta: {
  47. title: '走进水务',
  48. },
  49. },
  50. ]