communityRouter.js
3.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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')
},
{
path: '/views/aCommunity/adminOwnerDetail',
name: '/views/aCommunity/adminOwnerDetail',
component: () => import('@/views/aCommunity/adminOwnerDetail.vue')
},
{
path: '/pages/car/adminCarDetail',
name: '/pages/car/adminCarDetail',
component: () => import('@/views/aCommunity/adminCarDetailList.vue')
},
{
path: '/pages/fee/adminFeeDetail',
name: '/pages/fee/adminFeeDetail',
component: () => import('@/views/aCommunity/adminFeeDetailList.vue')
},
{
path: '/views/community/listRoomDecorationRecord',
name: '/views/community/listRoomDecorationRecord',
component: () => import('@/views/community/listRoomDecorationRecordList.vue')
},
{
path: '/views/community/listRoomRenovationRecordDetails',
name: '/views/community/listRoomRenovationRecordDetails',
component: () => import('@/views/community/listRoomRenovationRecordDetailsList.vue')
},
{
path: '/pages/community/wechatSubscribe',
name: '/pages/community/wechatSubscribe',
component: () => import('@/views/community/wechatSubscribeList.vue')
},
]