quanwei
18 hours ago c441dea81bd86bdfb12dff35821fed51f4cc91c2
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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
import Vue from 'vue'
import Router from 'vue-router'
 
const originalPush = Router.prototype.push
Router.prototype.push = function push(location, onResolve, onReject) {
  if (onResolve || onReject) return originalPush.call(this, location, onResolve, onReject)
  return originalPush.call(this, location).catch(err => err)
}
 
Vue.use(Router)
 
let routerlist = [
  /*登录页面*/
  {
    path: '/Login',
    name: 'Login',
    meta: {
      title: '登录'
    },
    component: () =>
      import('@/views/Login')
  },
  /*母版*/
  {
    path: '/',
    redirect: { name: 'Home' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*后台首页*/
      {
        path: '/Home',
        name: 'Home',
        meta: {
          title: '首页'
        },
        component: () =>
          import('@/views/home/Home')
      },
    ]
  },
  /*----插件管理栏目----*/
  {
    path: '/plugs',
    redirect: { name: 'plugs_index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*插件管理*/
      {
        path: 'plugs/Index',
        name: 'plugs_index',
        meta: {
          title: '插件管理'
        },
        component: () =>
          import('@/views/plugs/plugs/Index')
      },
    ]
  },
  /*----应用管理栏目----*/
  {
    path: '/application',
    redirect: { name: 'applic_index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*应用管理*/
      {
        path: 'applic/Index',
        name: 'applic_index',
        meta: {
          title: '插件管理'
        },
        component: () =>
          import('@/views/application/applic/Index')
      },
    ]
  },
  /*----权限----*/
  {
    path: '/access',
    redirect: { name: 'access_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'access_Index',
        meta: {
          title: '后台权限管理'
        },
        component: () =>
          import('@/views/access/Index')
      }
    ]
  },
  {
    path: '/supplieraccess',
    redirect: { name: 'supplieraccess_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'supplieraccess_Index',
        meta: {
          title: '商户后台权限管理'
        },
        component: () =>
          import('@/views/supplieraccess/Index')
      }
    ]
  },
  {
    path: '/branchaccess',
    redirect: { name: 'branchaccess_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'branchaccess_Index',
        meta: {
          title: '连盟后台权限管理'
        },
        component: () =>
          import('@/views/branchaccess/Index')
      }
    ]
  },
  {
    path: '/agentaccess',
    redirect: { name: 'agentaccess_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'agentaccess_Index',
        meta: {
          title: '代理商后台权限管理'
        },
        component: () =>
          import('@/views/agentaccess/Index')
      }
    ]
  },
  /*----商城列表----*/
  {
    path: '/shop',
    redirect: { name: 'shop_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'shop_Index',
        meta: {
          title: '权限管理'
        },
        component: () =>
          import('@/views/shop/Index')
      }
    ]
  },
  /*----代理商列表----*/
  {
    path: '/agent',
    redirect: { name: 'agent_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'agent_Index',
        meta: {
          title: '代理商管理'
        },
        component: () =>
          import('@/views/agent/Index')
      }
    ]
  },
  /*----客户管理列表----*/
  {
    path: '/client',
    redirect: { name: 'client_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*权限管理*/
      {
        path: 'Index',
        name: 'client_Index',
        meta: {
          title: '客户管理'
        },
        component: () =>
          import('@/views/client/Index')
      }
    ]
  },
  /*----修改密码----*/
  {
    path: '/password',
    redirect: { name: 'password_Index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*修改密码*/
      {
        path: 'Index',
        name: 'password_Index',
        meta: {
          title: '修改密码'
        },
        component: () =>
          import('@/views/password/Index')
      }
    ]
  },
  // /*----门店----*/
  // {
  //   path: '/store',
  //   redirect: { name: 'store_index' },
  //   meta: {
  //     title: '母版'
  //   },
  //   component: () =>
  //     import('@/views/layout/Main'),
  //   children: [
  //     /*产品管理*/
  //     {
  //       path: 'Index',
  //       name: 'store_index',
  //       meta: {
  //         title: '设置'
  //       },
  //       component: () =>
  //         import('@/views/store/Index')
  //     }
  //   ]
  // },
  /*----消息设置----*/
  {
    path: '/message',
    redirect: { name: 'message_index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*产品管理*/
      {
        path: 'Index',
        name: 'message_index',
        meta: {
          title: '消息设置'
        },
        component: () =>
          import('@/views/message/Index')
      }
    ]
  },
  /*----消息设置----*/
  {
    path: '/setting',
    redirect: { name: 'service_index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*产品管理*/
      {
        path: 'Index',
        name: 'service_index',
        meta: {
          title: '设置'
        },
        component: () =>
          import('@/views/setting/service/index')
      }
    ]
  },
  /*----开放设置----*/
  {
    path: '/opensettings',
    redirect: { name: 'opensettings_index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*设置管理*/
      {
        path: 'Index',
        name: 'opensettings_index',
        meta: {
          title: '开放设置'
        },
        component: () =>
          import('@/views/opensettings/Index')
      }
    ]
  },
  /*----地区设置----*/
  {
    path: '/region',
    redirect: { name: 'region_index' },
    meta: {
      title: '母版'
    },
    component: () =>
      import('@/views/layout/Main'),
    children: [
      /*产品管理*/
      {
        path: 'Index',
        name: 'region_index',
        meta: {
          title: '地区列表'
        },
        component: () =>
          import('@/views/region/Index')
      },
      {
        path: 'add',
        name: 'region_add',
        meta: {
          title: '地区新增'
        },
        component: () =>
          import('@/views/region/add')
      },
      {
        path: 'edit',
        name: 'region_edit',
        meta: {
          title: '地区修改'
        },
        component: () =>
          import('@/views/region/edit')
      }
    ]
  },
  /*测试页面*/
  {
    path: '/test',
    name: 'Test',
    meta: {
      title: '测试'
    },
    component: () =>
      import('@/views/help/Test')
  },
  /*字体图标查找页面*/
  {
    path: '/fonticon',
    name: 'Fonticon',
    meta: {
      title: '字体图标'
    },
    component: () =>
      import('@/views/help/Fonticon')
  },
  /*错误页面*/
  {
    path: '/error',
    name: 'Page404',
    meta: {
      title: '错误页面'
    },
    component: () =>
      import('@/views/error-page/404')
  }
];
 
/*创建路由*/
const createRouter = () => new Router({
  //scrollBehavior: () => ({ y: 0 }),
  routes: routerlist
})
 
const router = createRouter()
 
export function resetRouter() {
  const newRouter = createRouter()
  router.matcher = newRouter.matcher // the relevant part
}
 
export default router;