|
@@ -1,146 +1,148 @@
|
1
|
|
-import Vue from 'vue'
|
2
|
|
-import Router from 'vue-router'
|
|
1
|
+import Vue from "vue";
|
|
2
|
+import Router from "vue-router";
|
3
|
3
|
|
4
|
|
-Vue.use(Router)
|
|
4
|
+Vue.use(Router);
|
5
|
5
|
|
6
|
6
|
export default new Router({
|
7
|
|
- routes: [{
|
8
|
|
- path: '/',
|
9
|
|
- name: 'Home',
|
10
|
|
- component: () => import('@/pages/home/verifyToken')
|
|
7
|
+ routes: [
|
|
8
|
+ {
|
|
9
|
+ path: "/",
|
|
10
|
+ name: "Home",
|
|
11
|
+ component: () => import("@/pages/home/verifyToken")
|
11
|
12
|
},
|
12
|
13
|
{
|
13
|
|
- path: '/login',
|
14
|
|
- name: 'Home',
|
15
|
|
- component: () => import('@/pages/home/login')
|
|
14
|
+ path: "/login",
|
|
15
|
+ name: "Home",
|
|
16
|
+ component: () => import("@/pages/home/login")
|
16
|
17
|
},
|
17
|
18
|
{
|
18
|
|
- path: '/nopassword',
|
19
|
|
- name: 'Home',
|
20
|
|
- component: () => import('@/pages/home/noPassword')
|
|
19
|
+ path: "/nopassword",
|
|
20
|
+ name: "Home",
|
|
21
|
+ component: () => import("@/pages/home/noPassword")
|
21
|
22
|
},
|
22
|
23
|
{
|
23
|
|
- path: '/setname',
|
24
|
|
- name: 'Home',
|
25
|
|
- component: () => import('@/pages/home/register/name')
|
|
24
|
+ path: "/setname",
|
|
25
|
+ name: "Home",
|
|
26
|
+ component: () => import("@/pages/home/register/name")
|
26
|
27
|
},
|
27
|
28
|
{
|
28
|
|
- path: '/register',
|
29
|
|
- name: 'Home',
|
30
|
|
- component: () => import('@/pages/home/register/register')
|
|
29
|
+ path: "/register",
|
|
30
|
+ name: "Home",
|
|
31
|
+ component: () => import("@/pages/home/register/register")
|
31
|
32
|
},
|
32
|
33
|
{
|
33
|
|
- path: '/join',
|
34
|
|
- name: 'Home',
|
35
|
|
- component: () => import('@/pages/home/noJoinedGroup')
|
|
34
|
+ path: "/join",
|
|
35
|
+ name: "Home",
|
|
36
|
+ component: () => import("@/pages/home/noJoinedGroup")
|
36
|
37
|
},
|
37
|
38
|
{
|
38
|
|
- path: '/forget',
|
39
|
|
- name: 'Home',
|
40
|
|
- component: () => import('@/pages/home/forgetPassword')
|
|
39
|
+ path: "/forget",
|
|
40
|
+ name: "Home",
|
|
41
|
+ component: () => import("@/pages/home/forgetPassword")
|
41
|
42
|
},
|
42
|
43
|
{
|
43
|
|
- path: '/createorg',
|
44
|
|
- name: 'Home',
|
45
|
|
- component: () => import('@/pages/home/createOrg')
|
|
44
|
+ path: "/createorg",
|
|
45
|
+ name: "Home",
|
|
46
|
+ component: () => import("@/pages/home/createOrg")
|
46
|
47
|
},
|
47
|
48
|
// 首页
|
48
|
49
|
{
|
49
|
|
- path: '/myIndex',
|
50
|
|
- name: 'myIndex',
|
51
|
|
- component: () => import('@/pages/home/index'),
|
52
|
|
- children: [{
|
53
|
|
- path: '/homeIndex',
|
54
|
|
- component: () => import('@/pages/homeIndex/index.vue'),
|
|
50
|
+ path: "/myIndex",
|
|
51
|
+ name: "myIndex",
|
|
52
|
+ component: () => import("@/pages/home/index"),
|
|
53
|
+ children: [
|
|
54
|
+ {
|
|
55
|
+ path: "/homeIndex",
|
|
56
|
+ component: () => import("@/pages/homeIndex/index.vue"),
|
55
|
57
|
meta: {
|
56
|
58
|
noCache: true // 不会被 <keep-alive> 缓存
|
57
|
59
|
}
|
58
|
60
|
},
|
59
|
61
|
// 我的
|
60
|
62
|
{
|
61
|
|
- path: '/newMy',
|
62
|
|
- name: 'newMy',
|
63
|
|
- component: () => import('@/pages/my/index')
|
|
63
|
+ path: "/newMy",
|
|
64
|
+ name: "newMy",
|
|
65
|
+ component: () => import("@/pages/my/index")
|
64
|
66
|
},
|
65
|
67
|
// 商城
|
66
|
68
|
{
|
67
|
|
- path: '/shop',
|
68
|
|
- name: 'shop',
|
69
|
|
- component: () => import('@/pages/shop/index')
|
70
|
|
- },
|
71
|
|
- // 配置中心
|
72
|
|
- {
|
73
|
|
- path: '/configurecenter',
|
74
|
|
- name: 'configurecenter',
|
75
|
|
- component: () => import('@/pages/configureCenter/index')
|
|
69
|
+ path: "/shop",
|
|
70
|
+ name: "shop",
|
|
71
|
+ component: () => import("@/pages/shop/index")
|
76
|
72
|
}
|
77
|
73
|
]
|
78
|
74
|
},
|
79
|
75
|
|
80
|
76
|
{
|
81
|
|
- path: '/perfectOrg',
|
82
|
|
- component: () => import('@/pages/org'),
|
|
77
|
+ path: "/perfectOrg",
|
|
78
|
+ component: () => import("@/pages/org"),
|
83
|
79
|
meta: {
|
84
|
80
|
noCache: true // 不会被 <keep-alive> 缓存
|
85
|
81
|
}
|
86
|
82
|
},
|
87
|
83
|
{
|
88
|
|
- path: '/manageconsole',
|
89
|
|
- name: 'console',
|
90
|
|
- component: () => import('@/pages/console/managementConsole')
|
|
84
|
+ path: "/manageconsole",
|
|
85
|
+ name: "console",
|
|
86
|
+ component: () => import("@/pages/console/managementConsole")
|
91
|
87
|
},
|
92
|
88
|
{
|
93
|
|
- path: '/manageconsole/staff',
|
94
|
|
- name: 'staff',
|
|
89
|
+ path: "/manageconsole/staff",
|
|
90
|
+ name: "staff",
|
95
|
91
|
component: () =>
|
96
|
|
- import('@/pages/console/managementConsole/staff_role/staffManagement')
|
|
92
|
+ import("@/pages/console/managementConsole/staff_role/staffManagement")
|
97
|
93
|
},
|
98
|
94
|
{
|
99
|
|
- path: '/staff/editstaff',
|
100
|
|
- name: 'editstaff',
|
|
95
|
+ path: "/staff/editstaff",
|
|
96
|
+ name: "editstaff",
|
101
|
97
|
component: () =>
|
102
|
|
- import('@/pages/console/managementConsole/staff_role/editStaff')
|
103
|
|
- }, {
|
104
|
|
- path: '/staff/addstaff',
|
105
|
|
- name: 'addstaff',
|
|
98
|
+ import("@/pages/console/managementConsole/staff_role/editStaff")
|
|
99
|
+ },
|
|
100
|
+ {
|
|
101
|
+ path: "/staff/addstaff",
|
|
102
|
+ name: "addstaff",
|
106
|
103
|
component: () =>
|
107
|
|
- import('@/pages/console/managementConsole/staff_role/addStaff')
|
|
104
|
+ import("@/pages/console/managementConsole/staff_role/addStaff")
|
108
|
105
|
},
|
109
|
106
|
|
110
|
107
|
{
|
111
|
|
- path: '/manageconsole/role',
|
112
|
|
- name: 'role',
|
|
108
|
+ path: "/manageconsole/role",
|
|
109
|
+ name: "role",
|
113
|
110
|
component: () =>
|
114
|
|
- import('@/pages/console/managementConsole/staff_role/privilegeManagement')
|
|
111
|
+ import(
|
|
112
|
+ "@/pages/console/managementConsole/staff_role/privilegeManagement"
|
|
113
|
+ )
|
115
|
114
|
},
|
116
|
115
|
|
117
|
116
|
{
|
118
|
|
- path: '/role/user',
|
119
|
|
- name: 'user',
|
|
117
|
+ path: "/role/user",
|
|
118
|
+ name: "user",
|
120
|
119
|
component: () =>
|
121
|
|
- import('@/pages/console/managementConsole/staff_role/newUser')
|
|
120
|
+ import("@/pages/console/managementConsole/staff_role/newUser")
|
122
|
121
|
},
|
123
|
122
|
|
124
|
123
|
{
|
125
|
|
- path: '/role/addnewuser',
|
126
|
|
- name: 'user',
|
|
124
|
+ path: "/role/addnewuser",
|
|
125
|
+ name: "user",
|
127
|
126
|
component: () =>
|
128
|
|
- import('@/pages/console/managementConsole/staff_role/newAddStaff')
|
129
|
|
- }, {
|
130
|
|
- path: '/role/stafflist',
|
131
|
|
- name: 'user',
|
|
127
|
+ import("@/pages/console/managementConsole/staff_role/newAddStaff")
|
|
128
|
+ },
|
|
129
|
+ {
|
|
130
|
+ path: "/role/stafflist",
|
|
131
|
+ name: "user",
|
132
|
132
|
component: () =>
|
133
|
|
- import('@/pages/console/managementConsole/staff_role/employeeList')
|
134
|
|
- }, {
|
135
|
|
- path: '/role/usermanage',
|
136
|
|
- name: 'user',
|
|
133
|
+ import("@/pages/console/managementConsole/staff_role/employeeList")
|
|
134
|
+ },
|
|
135
|
+ {
|
|
136
|
+ path: "/role/usermanage",
|
|
137
|
+ name: "user",
|
137
|
138
|
component: () =>
|
138
|
|
- import('@/pages/console/managementConsole/staff_role/userManage')
|
139
|
|
- }, {
|
140
|
|
- path: '/role/addrole',
|
141
|
|
- name: 'add_role',
|
|
139
|
+ import("@/pages/console/managementConsole/staff_role/userManage")
|
|
140
|
+ },
|
|
141
|
+ {
|
|
142
|
+ path: "/role/addrole",
|
|
143
|
+ name: "add_role",
|
142
|
144
|
component: () =>
|
143
|
|
- import('@/pages/console/managementConsole/staff_role/newAddRole')
|
|
145
|
+ import("@/pages/console/managementConsole/staff_role/newAddRole")
|
144
|
146
|
},
|
145
|
147
|
|
146
|
148
|
//
|
|
@@ -152,219 +154,225 @@ export default new Router({
|
152
|
154
|
// },
|
153
|
155
|
|
154
|
156
|
{
|
155
|
|
- path: '/role/editrole',
|
156
|
|
- name: 'editrole',
|
|
157
|
+ path: "/role/editrole",
|
|
158
|
+ name: "editrole",
|
157
|
159
|
component: () =>
|
158
|
|
- import('@/pages/console/managementConsole/staff_role/editRole')
|
|
160
|
+ import("@/pages/console/managementConsole/staff_role/editRole")
|
159
|
161
|
},
|
160
|
162
|
{
|
161
|
|
- path: '/role/subpurview',
|
162
|
|
- name: 'purview',
|
|
163
|
+ path: "/role/subpurview",
|
|
164
|
+ name: "purview",
|
163
|
165
|
component: () =>
|
164
|
|
- import('@/pages/console/managementConsole/staff_role/subPurview')
|
|
166
|
+ import("@/pages/console/managementConsole/staff_role/subPurview")
|
165
|
167
|
},
|
166
|
168
|
{
|
167
|
|
- path: '/role/otherpurview',
|
168
|
|
- name: 'purview',
|
|
169
|
+ path: "/role/otherpurview",
|
|
170
|
+ name: "purview",
|
169
|
171
|
component: () =>
|
170
|
|
- import('@/pages/console/managementConsole/staff_role/otherPurview')
|
171
|
|
- }, {
|
172
|
|
- path: '/role/functionpurview',
|
173
|
|
- name: 'purview',
|
|
172
|
+ import("@/pages/console/managementConsole/staff_role/otherPurview")
|
|
173
|
+ },
|
|
174
|
+ {
|
|
175
|
+ path: "/role/functionpurview",
|
|
176
|
+ name: "purview",
|
174
|
177
|
component: () =>
|
175
|
|
- import('@/pages/console/managementConsole/staff_role/functionPurview')
|
|
178
|
+ import("@/pages/console/managementConsole/staff_role/functionPurview")
|
176
|
179
|
},
|
177
|
180
|
// 患者中心
|
178
|
181
|
{
|
179
|
|
- path: '/patients',
|
180
|
|
- name: 'patients',
|
181
|
|
- component: () => import('@/pages/patientManagement/patientManagement')
|
|
182
|
+ path: "/patients",
|
|
183
|
+ name: "patients",
|
|
184
|
+ component: () => import("@/pages/patientManagement/patientManagement")
|
182
|
185
|
},
|
183
|
186
|
// 新增病人
|
184
|
187
|
{
|
185
|
|
- path: '/addPatints',
|
186
|
|
- name: 'addpatients',
|
187
|
|
- component: () => import('@/pages/patients/addPatient')
|
|
188
|
+ path: "/addPatints",
|
|
189
|
+ name: "addpatients",
|
|
190
|
+ component: () => import("@/pages/patients/addPatient")
|
188
|
191
|
},
|
189
|
192
|
// 全部病程
|
190
|
193
|
{
|
191
|
|
- path: '/coursedetail',
|
192
|
|
- name: 'coursedetail',
|
193
|
|
- component: () => import('@/pages/allCourseManagement/index')
|
|
194
|
+ path: "/coursedetail",
|
|
195
|
+ name: "coursedetail",
|
|
196
|
+ component: () => import("@/pages/allCourseManagement/index")
|
194
|
197
|
},
|
195
|
198
|
// 全部干体重
|
196
|
199
|
{
|
197
|
|
- path: '/dryweight',
|
198
|
|
- name: 'dryweight',
|
199
|
|
- component: () => import('@/pages/allDryWeight/index')
|
|
200
|
+ path: "/dryweight",
|
|
201
|
+ name: "dryweight",
|
|
202
|
+ component: () => import("@/pages/allDryWeight/index")
|
200
|
203
|
},
|
201
|
204
|
// 基本信息
|
202
|
205
|
{
|
203
|
|
- path: '/editPatient',
|
204
|
|
- name: 'editPatient',
|
205
|
|
- component: () => import('@/pages/patients/editPatient')
|
|
206
|
+ path: "/editPatient",
|
|
207
|
+ name: "editPatient",
|
|
208
|
+ component: () => import("@/pages/patients/editPatient")
|
206
|
209
|
},
|
207
|
210
|
// 全部排班
|
208
|
211
|
{
|
209
|
|
- path: '/editScheduling',
|
210
|
|
- name: 'editscheduling',
|
211
|
|
- component: () => import('@/pages/allScheduling/index')
|
|
212
|
+ path: "/editScheduling",
|
|
213
|
+ name: "editscheduling",
|
|
214
|
+ component: () => import("@/pages/allScheduling/index")
|
212
|
215
|
},
|
213
|
216
|
// 全部透后宣教
|
214
|
217
|
{
|
215
|
|
- path: '/editEducation',
|
216
|
|
- name: 'editeducation',
|
217
|
|
- component: () => import('@/pages/allEducation/index')
|
|
218
|
+ path: "/editEducation",
|
|
219
|
+ name: "editeducation",
|
|
220
|
+ component: () => import("@/pages/allEducation/index")
|
218
|
221
|
},
|
219
|
222
|
// 全部抢救记录
|
220
|
223
|
{
|
221
|
|
- path: '/rescuerecord',
|
222
|
|
- name: 'rescuerecord',
|
223
|
|
- component: () => import('@/pages/allRescue/index')
|
|
224
|
+ path: "/rescuerecord",
|
|
225
|
+ name: "rescuerecord",
|
|
226
|
+ component: () => import("@/pages/allRescue/index")
|
224
|
227
|
},
|
225
|
228
|
//
|
226
|
229
|
{
|
227
|
|
- path: '/patientdetail',
|
228
|
|
- name: 'patientdetail',
|
229
|
|
- component: () => import('@/pages/doctorAdvice/index')
|
|
230
|
+ path: "/patientdetail",
|
|
231
|
+ name: "patientdetail",
|
|
232
|
+ component: () => import("@/pages/doctorAdvice/index")
|
230
|
233
|
},
|
231
|
234
|
// 搜索
|
232
|
235
|
{
|
233
|
|
- path: '/search',
|
234
|
|
- name: 'search',
|
235
|
|
- component: () => import('@/pages/search/index')
|
|
236
|
+ path: "/search",
|
|
237
|
+ name: "search",
|
|
238
|
+ component: () => import("@/pages/search/index")
|
236
|
239
|
},
|
237
|
240
|
// 我的信息
|
238
|
241
|
{
|
239
|
|
- path: '/myInfo',
|
240
|
|
- name: 'myInfo',
|
241
|
|
- component: () => import('@/pages/my/myInfo')
|
|
242
|
+ path: "/myInfo",
|
|
243
|
+ name: "myInfo",
|
|
244
|
+ component: () => import("@/pages/my/myInfo")
|
242
|
245
|
},
|
243
|
246
|
// 意见反馈
|
244
|
247
|
{
|
245
|
|
- path: '/feedBack',
|
246
|
|
- name: 'feedBack',
|
247
|
|
- component: () => import('@/pages/my/feedBack')
|
|
248
|
+ path: "/feedBack",
|
|
249
|
+ name: "feedBack",
|
|
250
|
+ component: () => import("@/pages/my/feedBack")
|
248
|
251
|
},
|
249
|
252
|
// 关于我们
|
250
|
253
|
{
|
251
|
|
- path: '/about',
|
252
|
|
- name: 'about',
|
253
|
|
- component: () => import('@/pages/my/aboutUs')
|
|
254
|
+ path: "/about",
|
|
255
|
+ name: "about",
|
|
256
|
+ component: () => import("@/pages/my/aboutUs")
|
254
|
257
|
},
|
255
|
258
|
// 公司介绍
|
256
|
259
|
{
|
257
|
|
- path: '/introduce',
|
258
|
|
- name: 'introduce',
|
259
|
|
- component: () => import('@/pages/my/companyIntroduction')
|
|
260
|
+ path: "/introduce",
|
|
261
|
+ name: "introduce",
|
|
262
|
+ component: () => import("@/pages/my/companyIntroduction")
|
260
|
263
|
},
|
261
|
264
|
// 更改名字
|
262
|
265
|
{
|
263
|
|
- path: '/editname',
|
264
|
|
- name: 'editname',
|
265
|
|
- component: () => import('@/pages/my/modifyingName')
|
|
266
|
+ path: "/editname",
|
|
267
|
+ name: "editname",
|
|
268
|
+ component: () => import("@/pages/my/modifyingName")
|
266
|
269
|
},
|
267
|
270
|
// 更改名字
|
268
|
271
|
{
|
269
|
|
- path: '/personalsign',
|
270
|
|
- name: 'personalsign',
|
271
|
|
- component: () => import('@/pages/my/personalSign')
|
|
272
|
+ path: "/personalsign",
|
|
273
|
+ name: "personalsign",
|
|
274
|
+ component: () => import("@/pages/my/personalSign")
|
272
|
275
|
},
|
273
|
276
|
|
274
|
277
|
// 全部长期透析记录
|
275
|
278
|
|
276
|
279
|
{
|
277
|
|
- path: '/alllongdialysis',
|
278
|
|
- name: 'longdialysis',
|
279
|
|
- component: () => import('@/pages/allLongDialysis/index')
|
|
280
|
+ path: "/alllongdialysis",
|
|
281
|
+ name: "longdialysis",
|
|
282
|
+ component: () => import("@/pages/allLongDialysis/index")
|
|
283
|
+ },
|
|
284
|
+ //,
|
|
285
|
+ {
|
|
286
|
+ path: "/alldoctoradvice",
|
|
287
|
+ name: "/alldoctoradvice",
|
|
288
|
+ component: () => import("@/pages/allDoctorAdvice/index")
|
280
|
289
|
},
|
281
|
|
- //,
|
|
290
|
+ // 配置中心
|
282
|
291
|
{
|
283
|
|
- path: '/alldoctoradvice',
|
284
|
|
- name: '/alldoctoradvice',
|
285
|
|
- component: () => import('@/pages/allDoctorAdvice/index')
|
|
292
|
+ path: "/configurecenter",
|
|
293
|
+ name: "configurecenter",
|
|
294
|
+ component: () => import("@/pages/configureCenter/index")
|
286
|
295
|
},
|
287
|
296
|
//
|
288
|
297
|
{
|
289
|
|
- path: '/organizationinfo',
|
290
|
|
- name: '/organizationinfo',
|
291
|
|
- component: () => import('@/pages/my/organizationInfo')
|
292
|
|
-
|
|
298
|
+ path: "/organizationinfo",
|
|
299
|
+ name: "/organizationinfo",
|
|
300
|
+ component: () => import("@/pages/my/organizationInfo")
|
293
|
301
|
},
|
294
|
302
|
{
|
295
|
|
- path: '/product',
|
296
|
|
- name: 'Product',
|
297
|
|
- component: () => import('@/pages/product/index')
|
|
303
|
+ path: "/product",
|
|
304
|
+ name: "Product",
|
|
305
|
+ component: () => import("@/pages/product/index")
|
298
|
306
|
},
|
299
|
307
|
{
|
300
|
|
- path: '/main',
|
301
|
|
- name: 'main',
|
302
|
|
- component: () => import('@/pages/main/index')
|
|
308
|
+ path: "/main",
|
|
309
|
+ name: "main",
|
|
310
|
+ component: () => import("@/pages/main/index")
|
303
|
311
|
},
|
304
|
312
|
{
|
305
|
|
- path: '/details',
|
306
|
|
- name: 'details',
|
307
|
|
- component: () => import('@/pages/main/DetailsPage')
|
|
313
|
+ path: "/details",
|
|
314
|
+ name: "details",
|
|
315
|
+ component: () => import("@/pages/main/DetailsPage")
|
308
|
316
|
},
|
309
|
317
|
{
|
310
|
|
- path: '/monitoring',
|
311
|
|
- name: 'monitorPage',
|
312
|
|
- component: () => import('@/pages/monitoring/index')
|
|
318
|
+ path: "/monitoring",
|
|
319
|
+ name: "monitorPage",
|
|
320
|
+ component: () => import("@/pages/monitoring/index")
|
313
|
321
|
},
|
314
|
322
|
{
|
315
|
|
- path: '/my',
|
316
|
|
- name: 'my',
|
317
|
|
- component: () => import('@/pages/personal/index')
|
|
323
|
+ path: "/my",
|
|
324
|
+ name: "my",
|
|
325
|
+ component: () => import("@/pages/personal/index")
|
318
|
326
|
},
|
319
|
327
|
{
|
320
|
|
- path: '/advice',
|
321
|
|
- name: 'doctorAdvice',
|
322
|
|
- component: () => import('@/pages/advice/index')
|
|
328
|
+ path: "/advice",
|
|
329
|
+ name: "doctorAdvice",
|
|
330
|
+ component: () => import("@/pages/advice/index")
|
323
|
331
|
},
|
324
|
332
|
{
|
325
|
|
- path: '/EditPersonal',
|
326
|
|
- name: 'EditPersonal',
|
327
|
|
- component: () => import('@/pages/personal/EditPersonal')
|
|
333
|
+ path: "/EditPersonal",
|
|
334
|
+ name: "EditPersonal",
|
|
335
|
+ component: () => import("@/pages/personal/EditPersonal")
|
328
|
336
|
},
|
329
|
337
|
{
|
330
|
|
- path: '/ElectronicSignature',
|
331
|
|
- name: 'ElectronicSignature',
|
332
|
|
- component: () => import('@/pages/personal/ElectronicSignature')
|
|
338
|
+ path: "/ElectronicSignature",
|
|
339
|
+ name: "ElectronicSignature",
|
|
340
|
+ component: () => import("@/pages/personal/ElectronicSignature")
|
333
|
341
|
},
|
334
|
342
|
{
|
335
|
|
- path: '/Print',
|
336
|
|
- name: 'Print',
|
337
|
|
- component: () => import('@/pages/main/PrintIndex')
|
|
343
|
+ path: "/Print",
|
|
344
|
+ name: "Print",
|
|
345
|
+ component: () => import("@/pages/main/PrintIndex")
|
338
|
346
|
},
|
339
|
347
|
{
|
340
|
|
- path: '/add_urgent_schedule',
|
341
|
|
- name: 'AddUrgentSchedule',
|
342
|
|
- component: () => import('@/pages/main/add_urgent_schedule')
|
|
348
|
+ path: "/add_urgent_schedule",
|
|
349
|
+ name: "AddUrgentSchedule",
|
|
350
|
+ component: () => import("@/pages/main/add_urgent_schedule")
|
343
|
351
|
},
|
344
|
352
|
{
|
345
|
|
- path: '/Prints',
|
346
|
|
- name: 'Prints',
|
347
|
|
- component: () => import('@/pages/main/Print')
|
|
353
|
+ path: "/Prints",
|
|
354
|
+ name: "Prints",
|
|
355
|
+ component: () => import("@/pages/main/Print")
|
348
|
356
|
},
|
349
|
357
|
{
|
350
|
|
- path: '/forgetPassword',
|
351
|
|
- name: 'forgetPassword',
|
352
|
|
- component: () => import('@/pages/personal/ForgetPassword')
|
|
358
|
+ path: "/forgetPassword",
|
|
359
|
+ name: "forgetPassword",
|
|
360
|
+ component: () => import("@/pages/personal/ForgetPassword")
|
353
|
361
|
},
|
354
|
362
|
{
|
355
|
|
- path: '/changePassword',
|
356
|
|
- name: 'changePassword',
|
357
|
|
- component: () => import('@/pages/personal/ChangePassword')
|
|
363
|
+ path: "/changePassword",
|
|
364
|
+ name: "changePassword",
|
|
365
|
+ component: () => import("@/pages/personal/ChangePassword")
|
358
|
366
|
},
|
359
|
367
|
{
|
360
|
|
- path: '/privacy',
|
361
|
|
- name: 'privacy',
|
362
|
|
- component: () => import('@/pages/privacy/index')
|
|
368
|
+ path: "/privacy",
|
|
369
|
+ name: "privacy",
|
|
370
|
+ component: () => import("@/pages/privacy/index")
|
363
|
371
|
},
|
364
|
372
|
{
|
365
|
|
- path: '/userAgreement',
|
366
|
|
- name: 'userAgreement',
|
367
|
|
- component: () => import('@/pages/userAgreement/index')
|
|
373
|
+ path: "/userAgreement",
|
|
374
|
+ name: "userAgreement",
|
|
375
|
+ component: () => import("@/pages/userAgreement/index")
|
368
|
376
|
}
|
369
|
377
|
]
|
370
|
|
-})
|
|
378
|
+});
|