routes.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. export const routes = {
  2. /**
  3. * 新闻详情
  4. */
  5. newsDetail: '/pagesOther/pages/news/detail/detail',
  6. /**
  7. * 新闻列表
  8. */
  9. newsGroup: '/pagesOther/pages/news/group/group',
  10. /**
  11. * 专业详情
  12. */
  13. majorDetail: '/pagesOther/pages/major/detail/detail',
  14. /**
  15. * 二级专业
  16. */
  17. majorLevelTwo: '/pagesOther/pages/major/level-two/level-two',
  18. /**
  19. * 专业列表
  20. */
  21. majorIndex: '/pagesOther/pages/major/index/index',
  22. /**
  23. * 院校库
  24. */
  25. universityIndex: '/pagesOther/pages/university/index/index',
  26. /**
  27. * 大学详情
  28. */
  29. universityDetail: '/pagesOther/pages/university/detail/detail',
  30. /*
  31. * 院校选择
  32. * */
  33. universityPicker: '/pagesOther/pages/university/picker/picker',
  34. universityIntroduction: '/pagesOther/pages/university/intro/intro',
  35. /*
  36. * 院校专业选择
  37. * */
  38. targetPicker: '/pagesStudy/pages/targeted-add/targeted-add',
  39. /**
  40. * 职业库
  41. */
  42. careerIndex: '/pagesOther/pages/career/index/index',
  43. /**
  44. * 职业详情
  45. */
  46. careerDetail: '/pagesOther/pages/career/detail/detail',
  47. /**
  48. * 测录取概率
  49. */
  50. voluntaryIndex: '/pagesOther/pages/voluntary/index/index',
  51. /*
  52. * 测录取概率-结果
  53. * */
  54. voluntaryResult: '/pagesOther/pages/voluntary/result/result',
  55. /*
  56. * 测技能分
  57. * */
  58. skillIndex: '/pagesOther/pages/skill/index/index',
  59. /*
  60. * 测技能分-结果
  61. * */
  62. skillResult: '/pagesOther/pages/skill/result/result',
  63. /*
  64. * 志愿表
  65. * */
  66. voluntaryList: '/pagesOther/pages/voluntary/list/list',
  67. /*
  68. * 学习备考首页
  69. * */
  70. studyIndex: '/pagesStudy/pages/index/index',
  71. /*
  72. * 学习备考首页
  73. * */
  74. studySimulate: '/pagesStudy/pages/simulation-entry/simulation-entry'
  75. } as const;
  76. export type Routes = keyof typeof routes;