“dzb”
2022-09-22 6237280bed0832babd48694e3d3598076fa1c467
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
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
const routes = [
  {
    path: "/",
    name: 'index',
    redirect: '/home'
  },
  {
    path: '/home',
    name: 'home',
    component: () => import('@/views/layout'),
    children: [
      {
        path: 'system',
        name: 'system',
        component: () => import('@/views/systemSetting'),
        children: [
          {
            path: "user",
            name: "user",
            component: () => import('@/views/systemSetting/baseSetting/user')
          },
          {
            path: 'role',
            name: 'role',
            component: () => import('@/views/systemSetting/baseSetting/role')
          },
          {
            path: 'authority',
            name: 'authority',
            component: () => import('@/views/systemSetting/baseSetting/authority')
          },
          {
            path: 'department',
            name: 'department',
            component: () => import('@/views/systemSetting/baseSetting/department')
          },
          {
            path: 'portalSetting',
            name: 'portalSetting',
            component: () => import('@/views/systemSetting/platform/portalSetting')
          },
          {
            path: 'otherInterface',
            name: 'otherInterface',
            component: () => import('@/views/systemSetting/platform/otherInterface')
          },
          {
            path: 'mySetting',
            name: 'mySetting',
            component: () => import('@/views/systemSetting/platform/mySetting')
          }
        ]
      },
      {
        path: "operate",
        name: 'operate',
        component: () => import('@/views/operate'),
        children: [
          {
            path: 'baseSetting',
            name: 'baseSetting',
            component: () => import('@/views/operate/baseSetting'),
          },
          {
            path: 'casepool',
            name: 'casepool',
            component: () => import('@/views/operate/disposal'),
            children: [
              {
                path: 'pool',
                name: 'pool',
                component: () => import('@/views/operate/disposal/casepool/pool'),
              },
              {
                path: 'escalation',
                name: 'escalation',
                component: () => import('@/views/operate/disposal/casepool/escalation'),
              },
              {
                path: 'dispatch',
                name: 'dispatch',
                component: () => import('@/views/operate/disposal/casepool/dispatch'),
              },
              {
                path: 'notDeal',
                name: 'notDeal',
                component: () => import('@/views/operate/disposal/casepool/notDeal'),
              },
            ]
          },
          {
            path: "fivepack",
            name: 'fivepack',
            component: () => import('@/views/operate/fivepack'),
            children: [
              {
                path: "shop",
                name: 'shop',
                component: () => import('@/views/operate/fivepack/shop'),
              }
            ]
          }
        ]
      },
      {
        path: "video",
        name: 'video',
        component: () => import('@/views/video')
      },
      {
        path: "lampblack",
        name: 'lampblack',
        component: () => import('@/views/lampblack')
      },
      {
        path: "law",
        name: 'law',
        component: () => import('@/views/law')
      },
      {
        path: "intellect",
        name: 'intellect',
        component: () => import('@/views/intellect')
      },
      {
        path: "info",
        name: 'info',
        component: () => import('@/views/info')
      },
    ]
  },
  {
    path: '/login',
    name: 'login',
    component: () => import('@/views/login')
  },
  {
    path: '/screen',
    name: 'screen',
    component: () => import('@/views/screen')
  },
  {
    path: '/404',
    name: "404",
    component: () => import('@/views/info/NotFound'),
  },
  {
    path: '/fail',
    name: "/fail",
    component: () => import('@/views/info/Fail'),
  },
  { path: '*', redirect: '/404' }
]
 
const router = new VueRouter({
  mode: 'history',
  base: process.env.BASE_URL,
  routes
})
const originalPush = router.push
router.push = function push(location) {
  return originalPush.call(this, location).catch(err => err);
}
export default router