123456789101112131415161718192021222324252627282930313233343536373839 |
- export default [
- {
- path: '/newhouse',
- name: '新房',
- icon: 'home',
- authority: ['Pages.NewRoom'],
- component: './FangCom/NewHouse/Room/layout',
- routes: [
- // {
- // path: '/newhouse',
- // params: { isSecHouse: false },
- // component: './FangCom/NewHouse/Room/list',
- // authority: ['Pages.NewRoom.Query']
- // },
- {
- path: '/newhouse',
- params: { isSecHouse: false },
- component: './FangCom/NewHouse/Room/Statistics',
- authority: ['Pages.NewRoom.Query']
- },
- {
- path: '/newhouse/edit/:selectKey/:id?/:subId?/:fourId?',
- name: '新楼盘编辑',
- params: { isSecHouse: false },
- component: './FangCom/NewHouse/Room/Edit',
- authority: ['Pages.NewRoom.Query'],
- hideInMenu: true
- }
- ]
- },
- {
- path: '/roomreport',
- name: '更新情况',
- icon: 'schedule',
- // params: { isSecHouse: false },
- component: './FangCom/NewHouse/RoomReport/index',
- authority: ['Pages.NewRoom.Query']
- }
- ]
|