“dzb”
2022-09-27 80e0b9da4d4da98452f8930b148750763d85f090
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
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'),
    meta:{
      needLogin:true,
    },
    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'),
            children: [
              {
                path: "violation",
                name: 'violation',
                component: () => import('@/views/operate/baseSetting/violation'),
              },
              {
                path: "illegalBuild",
                name: 'illegalBuild',
                component: () => import('@/views/operate/baseSetting/illegalBuild'),
              },
              {
                path: "threepack",
                name: 'threepack',
                component: () => import('@/views/operate/baseSetting/threepack'),
              }
            ]
          },
          {
            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: "threepackage",
                name: 'threepackage',
                component: () => import('@/views/operate/fivepack/threepack'),
              }
            ]
          },
          {
            path: 'myWait',
            name: 'myWait',
            component: () => import('@/views/operate/myWait'),
          },
          {
            path: 'rectification',
            name: 'rectification',
            component: () => import('@/views/operate/rectification'),
            children:[
              {
                path:"taskList",
                name:'taskList',
                component: () => import('@/views/operate/rectification/taskList'),
              },
              {
                path:"surveyList",
                name:'surveyList',
                component: () => import('@/views/operate/rectification/surveyList'),
              },
              {
                path:"renovationList",
                name:'renovationList',
                component: () => import('@/views/operate/rectification/renovationList'),
              }
            ]
          },
          {
            path:'lawEnforcement',
            name:'lawEnforcement',
            component:()=>import('@/views/operate/lawEnforcement')
          }
        ]
      },
      {
        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: '/success',
    name: "/success",
    component: () => import('@/views/info/Success'),
  },
  { 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