ficcXcxRoutes.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. //ficc小程序管理路由模块
  2. const home = r => require.ensure([], () => r(require('@/views/Home.vue')), 'Home'); //主页
  3. export default [
  4. {
  5. path: '/',
  6. component: home,
  7. name: 'ficc小程序管理',
  8. hidden: false,
  9. children:[
  10. {
  11. path:"videoManage",
  12. name:"中文视频",
  13. component:()=>import('@/views/interaction_manage/videoManage.vue')
  14. },
  15. {
  16. path:"videoManageEN",
  17. name:"英文视频",
  18. component:()=>import('@/views/interaction_manage/videoManageEN.vue')
  19. },
  20. {
  21. path:"videoManageENAdd",
  22. name:"添加视频",
  23. component:()=>import('@/views/interaction_manage/videoManageENAdd.vue'),
  24. meta: {
  25. pathFrom:'videoManageEN',
  26. pathName:'英文视频',
  27. keepAlive: false
  28. }
  29. },
  30. {
  31. path:"videoManageENEdit",
  32. name:"编辑视频",
  33. component:()=>import('@/views/interaction_manage/videoManageENAdd.vue')
  34. },
  35. {
  36. path: 'reportupdate',
  37. component: () => import('@/views/report_manage/dayWeekUpdate.vue'),
  38. name: '报告更新管理',
  39. hidden: true,
  40. meta: {
  41. keepAlive: false
  42. }
  43. },
  44. {
  45. path:"questionManage",
  46. name:"问答社区",
  47. component:()=>import('@/views/interaction_manage/questionManage.vue')
  48. },
  49. {
  50. path: "messageboard",
  51. name: "留言板",
  52. component: () => import('@/views/interactive_manage/messageboard.vue')
  53. },
  54. {
  55. path: "/ybComment",
  56. name: "留言管理",
  57. component: () => import('@/views/interactive_manage/messageManage.vue')
  58. },
  59. {
  60. path: "/likelist",
  61. name: "点赞",
  62. component: () => import('@/views/interactive_manage/likelist.vue')
  63. },
  64. {
  65. path:"questionComment",
  66. name:"问答评论",
  67. component:()=>import('@/views/interactive_manage/questionComment.vue')
  68. },
  69. {
  70. path:"bulletChatList",
  71. name:"弹幕管理",
  72. component:()=>import('@/views/interactive_manage/bulletChatList.vue')
  73. },
  74. {
  75. path:'voicePlayStatistics',
  76. component: () => import('@/views/dataReport_manage/voicePlayList.vue'),
  77. name: '语音播报统计',
  78. hidden: false
  79. },
  80. {
  81. path:'reportlabel',
  82. component:()=> import('@/views/report_manage/tagLib.vue'),
  83. name:'标签库',
  84. hidden:true
  85. },
  86. {
  87. path:'sendlog',
  88. component:()=> import('@/views/report_manage/reportEn/sendMsgLog.vue'),
  89. name:'群发日志',
  90. hidden:true
  91. },
  92. {
  93. path:'bannerStatistics',
  94. component:()=> import('@/views/interaction_manage/bannerStatistics.vue'),
  95. name:'banner 统计',
  96. hidden:true
  97. },
  98. {
  99. path:'reportVariety',
  100. component:()=> import('@/views/ficc_manage/reportVariety.vue'),
  101. name:'报告分类配置',
  102. hidden:true
  103. },
  104. {
  105. path: "chapterVariety",
  106. component: () => import("@/views/ficc_manage/chapterVariety.vue"),
  107. name: "章节设置",
  108. hidden: true,
  109. meta: {
  110. pathFrom: "reportVariety",
  111. pathName: "报告分类配置",
  112. },
  113. },
  114. ]
  115. }
  116. ]