数字化园区前端项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. *
  3. *首页、园区资讯路由
  4. *
  5. */
  6. export default [
  7. // 官网首页
  8. {
  9. path: "/index",
  10. name: "Index",
  11. component: () =>
  12. import ("@views/index/Index.vue"),
  13. meta: {
  14. title: "园区首页",
  15. },
  16. },
  17. // 园区资讯问答
  18. {
  19. path: "/park-information",
  20. name: "ParkInformation",
  21. component: () =>
  22. import ("@views/park-information/Index.vue"),
  23. meta: {
  24. title: "园区资讯问答",
  25. },
  26. children: [{
  27. path: "/",
  28. redirect: "question-list",
  29. },
  30. {
  31. path: "question-list",
  32. name: "QuestionList",
  33. component: () =>
  34. import ("@views/park-information/List.vue"),
  35. },
  36. {
  37. path: "search",
  38. name: "Search",
  39. component: () =>
  40. import ("@views/park-information/SearchList.vue"),
  41. },
  42. {
  43. path: "detail",
  44. name: "Detail",
  45. component: () =>
  46. import ("@views/park-information/Detail.vue"),
  47. },
  48. ],
  49. },
  50. ];