Blame view

src/router/communityRouter.js 1.44 KB
f92fd6ac   wuxw   开发我的小区下的功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  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')
      },
5760f7b9   wuxw   小区下的功能修改完成
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
      {
          path: '/pages/community/communityPublicityManage',
          name: '/pages/community/communityPublicityManage',
          component: () => import('@/views/community/communityPublicityManageList.vue')
      },
      {
          path: '/views/community/addCommunityPublicity',
          name: '/views/community/addCommunityPublicity',
          component: () => import('@/views/community/addCommunityPublicityList.vue')
      },
      {
          path: '/views/community/editCommunityPublicity',
          name: '/views/community/editCommunityPublicity',
          component: () => import('@/views/community/editCommunityPublicityList.vue')
      },
f92fd6ac   wuxw   开发我的小区下的功能
37
  ]