12345678910111213141516171819202122 |
- export default [
- {
- path: '/Message',
- name: '消息管理',
- icon: 'message',
- authority: ['Pages.Chat'],
- routes: [
- {
- path: '/Message/Im/list',
- name: '聊天消息管理',
- component: './FangCom/ChatMessage/List',
- authority: ['Pages.Chat.Query']
- },
- {
- path: '/Message/notification/list',
- name: '提醒消息管理',
- component: './FangCom/MpNotification/List',
- authority: ['Pages.Notification.Query']
- }
- ]
- }
- ]
|