index.js
9.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
/* Layout */
import Layout from '@/layout'
import Layout1 from '@/layout1'
/* Router Modules */
// import componentsRouter from './modules/components'
export const constantRoutes = [
{
path: '/404',
component: Layout,
hidden: true,
redirect: '/404/index',
children: [
{
path: '/index',
component: () => import('@/views/error-page/404'),
name: '404',
meta: { title: '404' }
}
]
},
{
path: '/dataView',
name: 'dataView',
component: () => import('@/views/dataView/index')
}
]
/**
* asyncRoutes
* the routes that need to be dynamically loaded based on user roles
*/
export const asyncRoutes = [
// 系统首页
{
path: '/',
component: Layout,
redirect: '/home',
children: [
{
path: 'home',
component: () => import('@/views/home/index'),
name: 'home',
meta: { title: '工作台', icon: 'workbench', affix: true }
}
]
},
// 接收报文查询
{
path: '/jsbwcx',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/jsbwcx/index'),
name: 'jsbwcx',
meta: { title: '接收报文查询', icon: 'zsgl' }
}
]
},
// 上报报文查询
{
path: '/sbbwcx',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/sbbwcx/index'),
name: 'sbbwcx',
meta: { title: '上报报文查询', icon: 'zsgl' }
}
]
},
// 登簿日志
{
path: '/dbrzcx',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/dbrzcx/index'),
name: 'dbrzcx',
meta: { title: '登簿日志查询', icon: 'zhcx' }
}
]
},
// 监控统计
{
path: '/jktj',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/jktj/index'),
name: 'jktj',
meta: { title: '监控统计', icon: 'zhcx' }
}
]
},
// 接入区域管理
{
path: '/jrqygl',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/jrqygl/index'),
name: 'jrqygl',
meta: { title: '接入区域管理', icon: 'zhcx' }
}
]
},
// 接收规则管理
{
path: '/jsgzgl',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/jsgzgl/index'),
name: 'jsgzgl',
meta: { title: '接收规则管理', icon: 'zhcx' }
}
]
},
// 接收报文重新入库
{
path: '/jsbwcxrk',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/jsbwcxrk/index'),
name: 'jsbwcxrk',
meta: { title: '接收报文重新入库', icon: 'zhcx' }
}
]
},
// 报文重新入库日志
{
path: '/bwcxrkrz',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/bwcxrkrz/index'),
name: 'bwcxrkrz',
meta: { title: '报文重新入库日志', icon: 'zhcx' }
}
]
},
// 中心日志
{
path: '/zxrz',
component: Layout,
children: [
{
path: 'index',
component: () => import('@/views/zxrz/index'),
name: 'zxrz',
meta: { title: '中心日志', icon: 'zhcx' }
}
]
},
// 接入业务信息
{
path: '/busineInfo',
component: Layout,
meta: { title: '接入业务信息', icon: 'sqcx', breadcrumb: false },
redirect: '/busineInfo/landOwnership',
alwaysShow: true,
name: 'busineInfo',
children: [
{
path: 'landOwnership',
component: () => import('@/views/business-info/land-ownership/index'),
name: 'landOwnership',
meta: { title: '土地所有权' }
},
{
path: 'landBuilding',
component: () => import('@/views/business-info/land-building/index'),
name: 'landBuilding',
meta: { title: '建设用地、宅基地使用权' }
},
{
path: 'realEstateMany',
component: () => import('@/views/business-info/real-estate-many/index'),
name: 'realEstateMany',
meta: { title: '房地产权(项目内多幢房屋)' }
},
{
path: 'realEstateSingle',
component: () => import('@/views/business-info/real-estate-single/index'),
name: 'realEstateSingle',
meta: { title: '房地产权(独幢、层、套、间、房屋)' }
},
{
path: 'ownerShare',
component: () => import('@/views/business-info/owner-share/index'),
name: 'ownerShare',
meta: { title: '建筑物区分所有权业主共有部分' }
},
{
path: 'seaArea',
component: () => import('@/views/business-info/sea-area/index'),
name: 'seaArea',
meta: { title: ' 海域(含无居民海岛)使用权' }
},
{
path: 'buildingOwnership',
component: () => import('@/views/business-info/building-ownership/index'),
name: 'buildingOwnership',
meta: { title: ' 构(建)筑物所有权' }
},
{
path: 'agriculturalLand',
component: () => import('@/views/business-info/agricultural-land/index'),
name: 'agriculturalLand',
meta: { title: ' 农用地使用权(非林地)' }
},
{
path: 'forestOwnership',
component: () => import('@/views/business-info/forest-ownership/index'),
name: 'forestOwnership',
meta: { title: ' 林权' }
},
{
path: 'cancellationReg',
component: () => import('@/views/business-info/cancellation-registration/index'),
name: 'cancellationReg',
meta: { title: ' 注销登记' }
},
{
path: 'objectionReg',
component: () => import('@/views/business-info/objection-registration/index'),
name: 'objectionReg',
meta: { title: ' 异议登记' }
},
{
path: 'noticeReg',
component: () => import('@/views/business-info/notice-registration/index'),
name: 'noticeReg',
meta: { title: ' 预告登记' }
},
{
path: 'seizureReg',
component: () => import('@/views/business-info/seizure-registration/index'),
name: 'seizureReg',
meta: { title: ' 查封登记' }
},
{
path: 'mortgageReg',
component: () => import('@/views/business-info/mortgage-registration/index'),
name: 'mortgageReg',
meta: { title: ' 抵押权登记' }
},
{
path: 'easementReg',
component: () => import('@/views/business-info/easement-registration/index'),
name: 'easementReg',
meta: { title: ' 地役权登记' }
}
]
},
// 系统管理
{
path: '/system',
component: Layout,
meta: { title: '系统管理', icon: 'sqcx', breadcrumb: false },
redirect: '/system/dictionaries',
alwaysShow: true,
name: 'system',
children: [
{
path: 'dictionaries',
component: () => import('@/views/system/dictionaries/dictionaries.vue'),
name: 'dictionaries',
meta: { title: '字典管理' }
},
{
path: 'validationRule',
component: () => import('@/views/system/validationRule'),
name: 'validationRule',
meta: { title: '上报效验规则配置' }
},
{
path: 'timedTask',
component: () => import('@/views/system/timedTask'),
name: 'timedTask',
meta: { title: '定时任务' }
}
]
}
]
export const asyncRoutes1 = [
// 监管首页
{
path: '/',
component: Layout1,
redirect: '/jgHome',
meta: { title: '首页' },
children: [
{
path: 'jgHome',
component: () => import('@/views/home/index'),
name: 'jgHome',
meta: { title: '首页', icon: 'workbench', affix: true }
}
]
},
// 接收报文查询
{
path: '/jsbwcx1',
component: Layout1,
children: [
{
path: 'index',
component: () => import('@/views/jsbwcx/index'),
name: 'jsbwcx',
meta: { title: '接收报文查询1', icon: 'zsgl' }
}
]
},
// 上报报文查询
{
path: '/sbbwcx1',
component: Layout1,
children: [
{
path: 'index',
component: () => import('@/views/sbbwcx/index'),
name: 'sbbwcx',
meta: { title: '上报报文查询', icon: 'zsgl' }
}
]
},
// 登簿日志
{
path: '/dbrzcx1',
component: Layout1,
children: [
{
path: 'index',
component: () => import('@/views/dbrzcx/index'),
name: 'dbrzcx',
meta: { title: '登簿日志查询', icon: 'zhcx' }
}
]
},
// 系统管理
{
path: '/system1',
component: Layout1,
meta: { title: '系统管理', icon: 'sqcx', breadcrumb: false },
redirect: '/system/dictionaries',
alwaysShow: true,
name: 'system',
children: [
{
path: 'dictionaries',
component: () => import('@/views/system/dictionaries/dictionaries.vue'),
name: 'dictionaries',
meta: { title: '字典管理' }
},
{
path: 'validationRule',
component: () => import('@/views/system/validationRule'),
name: 'validationRule',
meta: { title: '上报效验规则配置' }
},
{
path: 'timedTask',
component: () => import('@/views/system/timedTask'),
name: 'timedTask',
meta: { title: '定时任务' }
}
]
}
]
const createRouter = () =>
new Router({
scrollBehavior: () => ({ y: 0 }),
routes: [...constantRoutes, ...asyncRoutes, ...asyncRoutes1]
})
const router = createRouter()
export function resetRouter () {
const newRouter = createRouter()
router.matcher = newRouter.matcher // reset router
}
export default router