12345678910111213141516171819202122232425262728293031 |
- export default [
- {
- path: '/comment',
- name: '点评管理',
- icon: 'message',
- authority: ['Pages.Comment.Query'],
- routes: [
- {
- path: '/comment/newhouse',
- name: '新房点评',
- params: { commentType: 'newhouse' },
- component: './FangCom/Comment/List',
- authority: ['Pages.Comment.Query.NewHouse']
- },
- {
- path: '/comment/sechouse',
- name: '二手房点评',
- params: { commentType: 'sechouse' },
- component: './FangCom/Comment/List',
- authority: ['Pages.Comment.Query.SecHouse']
- },
- {
- path: '/comment/expertadvise',
- name: '专家指导',
- params: { commentType: 'expertadvise' },
- component: './FangCom/Comment/List',
- authority: ['Pages.Comment.Query.ExpertAdvise']
- }
- ]
- }
- ]
|