|
@@ -65,15 +65,128 @@ export default [
|
65
|
65
|
// },
|
66
|
66
|
// ],
|
67
|
67
|
// },
|
|
68
|
+ {
|
|
69
|
+ path: '/property',
|
|
70
|
+ name: '物业管理',
|
|
71
|
+ component: '../layouts/BlankLayout',
|
|
72
|
+ routes: [
|
|
73
|
+ {
|
|
74
|
+ path: 'buildingInfo',
|
|
75
|
+ name: '楼栋管理',
|
|
76
|
+ component: './property/building'
|
|
77
|
+ },
|
|
78
|
+ {
|
|
79
|
+ path: 'buildingInfo/importExcel',
|
|
80
|
+ name: '楼栋导入',
|
|
81
|
+ component: './property/building/BatchImport',
|
|
82
|
+ hideInMenu: true,
|
|
83
|
+ },
|
|
84
|
+ {
|
|
85
|
+ path: 'proprietor',
|
|
86
|
+ name: '业主管理',
|
|
87
|
+ component: './property/proprietor'
|
|
88
|
+ },
|
|
89
|
+ {
|
|
90
|
+ path: 'proprietor/add',
|
|
91
|
+ name: '增加业主',
|
|
92
|
+ component: './property/proprietor/Add',
|
|
93
|
+ hideInMenu: true,
|
|
94
|
+ },
|
|
95
|
+ {
|
|
96
|
+ path: 'proprietor/detail',
|
|
97
|
+ name: '业主详情',
|
|
98
|
+ component: './property/proprietor/Detail',
|
|
99
|
+ hideInMenu: true,
|
|
100
|
+ },
|
|
101
|
+ {
|
|
102
|
+ path: 'proprietor/audit',
|
|
103
|
+ name: '资料审核',
|
|
104
|
+ component: './property/proprietor/Audit',
|
|
105
|
+ },
|
|
106
|
+ {
|
|
107
|
+ path: 'proprietor/batch',
|
|
108
|
+ name: '业主导入',
|
|
109
|
+ component: './property/proprietor/BatchImport',
|
|
110
|
+ hideInMenu: true,
|
|
111
|
+ },
|
|
112
|
+ {
|
|
113
|
+ path: 'notice',
|
|
114
|
+ name: '公告管理',
|
|
115
|
+ component: './property/notice'
|
|
116
|
+ },
|
|
117
|
+ {
|
|
118
|
+ path: 'notice/edit',
|
|
119
|
+ name: '公告管理详情',
|
|
120
|
+ component: './property/notice/Edit',
|
|
121
|
+ hideInMenu: true,
|
|
122
|
+ },
|
|
123
|
+ {
|
|
124
|
+ path: 'news',
|
|
125
|
+ name: '服务内容',
|
|
126
|
+ component: './property/news'
|
|
127
|
+ },
|
|
128
|
+ {
|
|
129
|
+ path: 'news/edit',
|
|
130
|
+ name: '服务内容详情',
|
|
131
|
+ component: './property/news/Edit',
|
|
132
|
+ hideInMenu: true,
|
|
133
|
+ },
|
|
134
|
+ {
|
|
135
|
+ path: 'bill/management',
|
|
136
|
+ name: '收费组管理',
|
|
137
|
+ component: './property/bill/list',
|
|
138
|
+ },
|
|
139
|
+ {
|
|
140
|
+ path: 'bill/management/add',
|
|
141
|
+ name: '新增收费组',
|
|
142
|
+ component: './property/bill/edit',
|
|
143
|
+ hideInMenu: true,
|
|
144
|
+ },
|
|
145
|
+ {
|
|
146
|
+ path: 'bill/management/info',
|
|
147
|
+ name: '收费组详情',
|
|
148
|
+ component: './property/bill/info',
|
|
149
|
+ hideInMenu: true,
|
|
150
|
+ },
|
|
151
|
+ {
|
|
152
|
+ path: 'bill/management/info/add',
|
|
153
|
+ name: '新增收费',
|
|
154
|
+ component: './property/bill/info/Add',
|
|
155
|
+ hideInMenu: true,
|
|
156
|
+ },
|
|
157
|
+ {
|
|
158
|
+ path: 'bill/order',
|
|
159
|
+ name: '订单管理',
|
|
160
|
+ component: './property/bill/order',
|
|
161
|
+ },
|
|
162
|
+ {
|
|
163
|
+ path: 'bill/order/info',
|
|
164
|
+ name: '订单信息',
|
|
165
|
+ component: './property/bill/order/Info',
|
|
166
|
+ hideInMenu: true,
|
|
167
|
+ },
|
|
168
|
+ {
|
|
169
|
+ path: 'bill/ticket',
|
|
170
|
+ name: '工单管理',
|
|
171
|
+ component: './property/ticket',
|
|
172
|
+ },
|
|
173
|
+ {
|
|
174
|
+ path: 'bill/ticket/detail',
|
|
175
|
+ name: '工单详情',
|
|
176
|
+ component: './property/ticket/Detail',
|
|
177
|
+ hideInMenu: true,
|
|
178
|
+ },
|
|
179
|
+ ]
|
|
180
|
+ },
|
68
|
181
|
{
|
69
|
182
|
path: '/customer',
|
70
|
183
|
name: '会员管理',
|
71
|
184
|
component: '../layouts/BlankLayout',
|
72
|
185
|
routes: [
|
73
|
186
|
{
|
74
|
|
- path: '/customer/customerlist/list',
|
|
187
|
+ path: '/customer/personlist',
|
75
|
188
|
name: '会员列表',
|
76
|
|
- component: './customer/customerlist/index',
|
|
189
|
+ component: './customer/personlist/index',
|
77
|
190
|
},
|
78
|
191
|
{
|
79
|
192
|
path: '/customer/customerlist/customerDetail',
|
|
@@ -547,119 +660,7 @@ export default [
|
547
|
660
|
},
|
548
|
661
|
],
|
549
|
662
|
},
|
550
|
|
- {
|
551
|
|
- path: '/property',
|
552
|
|
- name: '物业管理',
|
553
|
|
- component: '../layouts/BlankLayout',
|
554
|
|
- routes: [
|
555
|
|
- {
|
556
|
|
- path: 'buildingInfo',
|
557
|
|
- name: '楼栋管理',
|
558
|
|
- component: './property/building'
|
559
|
|
- },
|
560
|
|
- {
|
561
|
|
- path: 'buildingInfo/importExcel',
|
562
|
|
- name: '楼栋导入',
|
563
|
|
- component: './property/building/BatchImport',
|
564
|
|
- hideInMenu: true,
|
565
|
|
- },
|
566
|
|
- {
|
567
|
|
- path: 'proprietor',
|
568
|
|
- name: '业主管理',
|
569
|
|
- component: './property/proprietor'
|
570
|
|
- },
|
571
|
|
- {
|
572
|
|
- path: 'proprietor/add',
|
573
|
|
- name: '增加业主',
|
574
|
|
- component: './property/proprietor/Add',
|
575
|
|
- hideInMenu: true,
|
576
|
|
- },
|
577
|
|
- {
|
578
|
|
- path: 'proprietor/detail',
|
579
|
|
- name: '业主详情',
|
580
|
|
- component: './property/proprietor/Detail',
|
581
|
|
- hideInMenu: true,
|
582
|
|
- },
|
583
|
|
- {
|
584
|
|
- path: 'proprietor/audit',
|
585
|
|
- name: '资料审核',
|
586
|
|
- component: './property/proprietor/Audit',
|
587
|
|
- },
|
588
|
|
- {
|
589
|
|
- path: 'proprietor/batch',
|
590
|
|
- name: '业主导入',
|
591
|
|
- component: './property/proprietor/BatchImport',
|
592
|
|
- hideInMenu: true,
|
593
|
|
- },
|
594
|
|
- {
|
595
|
|
- path: 'notice',
|
596
|
|
- name: '公告管理',
|
597
|
|
- component: './property/notice'
|
598
|
|
- },
|
599
|
|
- {
|
600
|
|
- path: 'notice/edit',
|
601
|
|
- name: '公告管理详情',
|
602
|
|
- component: './property/notice/Edit',
|
603
|
|
- hideInMenu: true,
|
604
|
|
- },
|
605
|
|
- {
|
606
|
|
- path: 'news',
|
607
|
|
- name: '服务内容',
|
608
|
|
- component: './property/news'
|
609
|
|
- },
|
610
|
|
- {
|
611
|
|
- path: 'news/edit',
|
612
|
|
- name: '服务内容详情',
|
613
|
|
- component: './property/news/Edit',
|
614
|
|
- hideInMenu: true,
|
615
|
|
- },
|
616
|
|
- {
|
617
|
|
- path: 'bill/management',
|
618
|
|
- name: '收费组管理',
|
619
|
|
- component: './property/bill/list',
|
620
|
|
- },
|
621
|
|
- {
|
622
|
|
- path: 'bill/management/add',
|
623
|
|
- name: '新增收费组',
|
624
|
|
- component: './property/bill/edit',
|
625
|
|
- hideInMenu: true,
|
626
|
|
- },
|
627
|
|
- {
|
628
|
|
- path: 'bill/management/info',
|
629
|
|
- name: '收费组详情',
|
630
|
|
- component: './property/bill/info',
|
631
|
|
- hideInMenu: true,
|
632
|
|
- },
|
633
|
|
- {
|
634
|
|
- path: 'bill/management/info/add',
|
635
|
|
- name: '新增收费',
|
636
|
|
- component: './property/bill/info/Add',
|
637
|
|
- hideInMenu: true,
|
638
|
|
- },
|
639
|
|
- {
|
640
|
|
- path: 'bill/order',
|
641
|
|
- name: '订单管理',
|
642
|
|
- component: './property/bill/order',
|
643
|
|
- },
|
644
|
|
- {
|
645
|
|
- path: 'bill/order/info',
|
646
|
|
- name: '订单信息',
|
647
|
|
- component: './property/bill/order/Info',
|
648
|
|
- hideInMenu: true,
|
649
|
|
- },
|
650
|
|
- {
|
651
|
|
- path: 'bill/ticket',
|
652
|
|
- name: '工单管理',
|
653
|
|
- component: './property/ticket',
|
654
|
|
- },
|
655
|
|
- {
|
656
|
|
- path: 'bill/ticket/detail',
|
657
|
|
- name: '工单详情',
|
658
|
|
- component: './property/ticket/Detail',
|
659
|
|
- hideInMenu: true,
|
660
|
|
- },
|
661
|
|
- ]
|
662
|
|
- },
|
|
663
|
+
|
663
|
664
|
// {
|
664
|
665
|
// path: '/system',
|
665
|
666
|
// name: '系统管理',
|