communityRouter.js
1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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')
},
{
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')
},
{
path: '/views/room/handover',
name: '/views/room/handover',
component: () => import('@/views/room/handoverList.vue')
},
{
path: '/views/room/ownerExitRoom',
name: '/views/room/ownerExitRoom',
component: () => import('@/views/room/ownerExitRoomList.vue')
},
{
path: '/pages/community/adminRoomDetail',
name: '/pages/community/adminRoomDetail',
component: () => import('@/views/aCommunity/adminRoomDetail.vue')
},
]