fangcom.live.router.config.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. export default [
  2. {
  3. path: '/live',
  4. name: '直播管理',
  5. icon: 'global',
  6. authority: ['Pages.LiveRoom'],
  7. routes: [
  8. // {
  9. // path: '/workenter/profile',
  10. // name: '个人中心',
  11. // component: './FangCom/WorkCenter/Profile/List',
  12. // authority: ['Pages.Administration.Users']
  13. // },
  14. {
  15. path: '/live/room',
  16. name: '图文直播',
  17. component: './FangCom/Live/RichLive/List',
  18. authority: ['Pages.LiveRoom']
  19. },
  20. {
  21. path: '/live/room/panel/:uid',
  22. name: '直播间',
  23. component: './FangCom/Live/RichLive/Chat',
  24. authority: ['Pages.LiveRoom'],
  25. hideInMenu: true
  26. },
  27. {
  28. path: '/live/replydict',
  29. name: '回复词条',
  30. component: './FangCom/Live/ReplyDict/List',
  31. authority: ['Pages.LiveRoom']
  32. },
  33. {
  34. path: '/live/botdict',
  35. name: '马甲设置',
  36. component: './FangCom/Live/BotDict/List',
  37. authority: ['Pages.LiveRoom']
  38. },
  39. {
  40. path: 'https://live.weixin.qq.com/livemp/login',
  41. name: '微信直播',
  42. target: '_blank'
  43. }
  44. ]
  45. }
  46. ]