Blame view

src/router/communityRouter.js 834 Bytes
f92fd6ac   wuxw   开发我的小区下的功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  export default [
      {
          path: '/pages/property/roomStructure',
          name: '/pages/property/roomStructure',
          component: () => import('@/views/room/roomStructureList.vue')
      },
      {
          path: '/pages/property/carStructure',
          name: '/pages/property/carStructure',
          component: () => import('@/views/car/carStructureList.vue')
      },
      {
          path: '/pages/property/propertyRightRegistrationManage',
          name: '/pages/property/propertyRightRegistrationManage',
          component: () => import('@/views/room/propertyRightRegistrationManageList.vue')
      },
      {
          path: '/views/room/listPropertyRightRegistrationDetail',
          name: '/views/room/listPropertyRightRegistrationDetail',
          component: () => import('@/views/room/listPropertyRightRegistrationDetailList.vue')
      },
  ]