fangcom.chatmessage.router.config.js 519 B

12345678910111213141516171819202122
  1. export default [
  2. {
  3. path: '/Message',
  4. name: '消息管理',
  5. icon: 'message',
  6. authority: ['Pages.Chat'],
  7. routes: [
  8. {
  9. path: '/Message/Im/list',
  10. name: '聊天消息管理',
  11. component: './FangCom/ChatMessage/List',
  12. authority: ['Pages.Chat.Query']
  13. },
  14. {
  15. path: '/Message/notification/list',
  16. name: '提醒消息管理',
  17. component: './FangCom/MpNotification/List',
  18. authority: ['Pages.Notification.Query']
  19. }
  20. ]
  21. }
  22. ]