index.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. export const cygxRoutes = [
  2. {
  3. path: "/raiReportDtl",
  4. name: "raiReportDtl",
  5. component: () => import("@/views/cygx/raiReportDtl.vue"),
  6. },
  7. {
  8. path: "/yxReportDtl",
  9. name: "yxReportDtl",
  10. component: () => import("@/views/cygx/yxReportDtl.vue"),
  11. },
  12. {
  13. path: "/strategyReport",
  14. name: "strategyReport",
  15. component: () => import("@/views/cygx/strategyReport.vue"),
  16. },
  17. {
  18. path: "/internalDetials",
  19. name: "internalDetials",
  20. component: () => import("@/views/cygx/internalDetials.vue"),
  21. },
  22. {
  23. path: "/cygx",
  24. name: "cygx",
  25. component: () => import("@/App.vue"),
  26. children: [
  27. {
  28. path: "report",
  29. name: "report",
  30. component: () => import("@/views/cygxPc/report.vue"),
  31. },
  32. {
  33. path: "login",
  34. name: "login",
  35. component: () => import("@/views/cygxPc/login.vue"),
  36. },
  37. ],
  38. },
  39. {
  40. path: "/agreement",
  41. name: "agreement",
  42. component: () => import("@/App.vue"),
  43. children: [
  44. {
  45. path: "privacy",
  46. name: "privacy",
  47. component: () => import("@/views/cygx/Agreement/privacy.vue"),
  48. },
  49. {
  50. path: "service",
  51. name: "service",
  52. component: () => import("@/views/cygx/Agreement/service.vue"),
  53. },
  54. ],
  55. },
  56. ];