auditionRouter.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. let auditionRouter = [
  2. {
  3. path: '/manageEvaluation',
  4. name: 'manageEvaluation',
  5. component: () => import(/* webpackChunkName:'ManageEvaluation'*/'@/views/audition/ManageEvaluation.vue'),
  6. meta: {
  7. descrition: '线上课评价',
  8. weight: 2 // 页面权重
  9. }
  10. }, {
  11. path: '/courseEvaluation',
  12. name: 'courseEvaluation',
  13. component: () => import(/* webpackChunkName:'CourseEvaluation'*/'@/views/audition/CourseEvaluation.vue'),
  14. meta: {
  15. descrition: '课程评价',
  16. weight: 3 // 页面权重
  17. }
  18. }, {
  19. path: '/remuneration',
  20. name: 'remuneration',
  21. component: () => import(/* webpackChunkName:'Remuneration'*/'@/views/audition/Remuneration.vue'),
  22. meta: {
  23. descrition: '课酬确认',
  24. weight: 4 // 页面权重
  25. }
  26. }, {
  27. path: '/appealDetail',
  28. name: 'appealDetail',
  29. component: () => import(/* webpackChunkName:'AppealDetail'*/'@/views/audition/AppealDetail.vue'),
  30. meta: {
  31. descrition: '申诉详情',
  32. weight: 4 // 页面权重
  33. }
  34. }, {
  35. path: '/appealResult',
  36. name: 'appealResult',
  37. component: () => import(/* webpackChunkName:'AppealResult'*/'@/views/audition/AppealResult.vue'),
  38. meta: {
  39. descrition: '处理结果',
  40. weight: 4 // 页面权重
  41. }
  42. }, {
  43. path: '/monthAppeal',
  44. name: 'monthAppeal',
  45. component: () => import(/* webpackChunkName:'MonthAppeal'*/'@/views/audition/MonthAppeal.vue'),
  46. meta: {
  47. descrition: '月度课酬列表',
  48. weight: 4 // 页面权重
  49. }
  50. }, {
  51. path: '/appealRecord',
  52. name: 'appealRecord',
  53. component: () => import(/* webpackChunkName:'AppealRecord'*/'@/views/audition/AppealRecord.vue'),
  54. meta: {
  55. descrition: '课酬申诉记录',
  56. weight: 4 // 页面权重
  57. }
  58. }, {
  59. path: '/arrangeWork',
  60. name: 'arrangeWork',
  61. component: () => import(/* webpackChunkName:'ArrangeWork'*/'@/views/audition/ArrangeWork.vue'),
  62. meta: {
  63. descrition: '布置练习',
  64. weight: 4 // 页面权重
  65. },
  66. },
  67. {
  68. path: '/attendanceError',
  69. name: 'attendanceError',
  70. component: () => import(/* webpackChunkName:'ArrangeWork'*/'@/views/attendanceError/index.vue'),
  71. meta: {
  72. descrition: '学员考勤异常',
  73. weight: 4 // 页面权重
  74. },
  75. },
  76. {
  77. path: '/attendScheduleDetail',
  78. name: 'attendScheduleDetail',
  79. component: () => import(/* webpackChunkName:'ArrangeWork'*/'@/views/attendanceError/attendScheduleDetail.vue'),
  80. meta: {
  81. descrition: '考勤异常',
  82. weight: 4 // 页面权重
  83. },
  84. },
  85. ]
  86. export default auditionRouter