|
@@ -46,22 +46,16 @@ export default new Router({
|
46
|
46
|
},
|
47
|
47
|
// 首页
|
48
|
48
|
{
|
49
|
|
- path: "/myIndex",
|
50
|
|
- name: "myIndex",
|
51
|
|
- component: () => import("@/pages/home/index"),
|
52
|
|
- children: [
|
53
|
|
- {
|
54
|
|
- path: "/homeIndex",
|
55
|
|
- component: () => import("@/pages/homeIndex/index.vue"),
|
|
49
|
+ path: '/myIndex',
|
|
50
|
+ name: 'myIndex',
|
|
51
|
+ component: () => import('@/pages/home/index'),
|
|
52
|
+ children: [{
|
|
53
|
+ path: '/homeIndex',
|
|
54
|
+ component: () => import('@/pages/homeIndex/index.vue'),
|
56
|
55
|
meta: {
|
57
|
56
|
noCache: true // 不会被 <keep-alive> 缓存
|
58
|
|
-<<<<<<< .mine
|
59
|
|
- }
|
60
|
|
-
|
61
|
|
-=======
|
62
|
57
|
}
|
63
|
58
|
|
64
|
|
->>>>>>> .theirs
|
65
|
59
|
},
|
66
|
60
|
// 我的
|
67
|
61
|
{
|
|
@@ -78,71 +72,71 @@ export default new Router({
|
78
|
72
|
]
|
79
|
73
|
},
|
80
|
74
|
{
|
81
|
|
- path: "/perfectOrg",
|
82
|
|
- component: () => import("@/pages/org"),
|
|
75
|
+ path: '/perfectOrg',
|
|
76
|
+ component: () => import('@/pages/org'),
|
83
|
77
|
meta: {
|
84
|
78
|
noCache: true // 不会被 <keep-alive> 缓存
|
85
|
79
|
}
|
86
|
80
|
},
|
87
|
81
|
// 患者中心
|
88
|
82
|
{
|
89
|
|
- path: "/patients",
|
90
|
|
- name: "patients",
|
91
|
|
- component: () => import("@/pages/patientManagement/patientManagement")
|
|
83
|
+ path: '/patients',
|
|
84
|
+ name: 'patients',
|
|
85
|
+ component: () => import('@/pages/patientManagement/patientManagement')
|
92
|
86
|
},
|
93
|
87
|
// 新增病人
|
94
|
88
|
{
|
95
|
|
- path: "/addPatints",
|
96
|
|
- name: "addpatients",
|
97
|
|
- component: () => import("@/pages/patients/addPatient")
|
|
89
|
+ path: '/addPatints',
|
|
90
|
+ name: 'addpatients',
|
|
91
|
+ component: () => import('@/pages/patients/addPatient')
|
98
|
92
|
},
|
99
|
93
|
// 全部病程
|
100
|
94
|
{
|
101
|
|
- path: "/coursedetail",
|
102
|
|
- name: "coursedetail",
|
103
|
|
- component: () => import("@/pages/allCourseManagement/index")
|
|
95
|
+ path: '/coursedetail',
|
|
96
|
+ name: 'coursedetail',
|
|
97
|
+ component: () => import('@/pages/allCourseManagement/index')
|
104
|
98
|
},
|
105
|
99
|
// 全部干体重
|
106
|
100
|
{
|
107
|
|
- path: "/dryweight",
|
108
|
|
- name: "dryweight",
|
109
|
|
- component: () => import("@/pages/allDryWeight/index")
|
|
101
|
+ path: '/dryweight',
|
|
102
|
+ name: 'dryweight',
|
|
103
|
+ component: () => import('@/pages/allDryWeight/index')
|
110
|
104
|
},
|
111
|
105
|
// 基本信息
|
112
|
106
|
{
|
113
|
|
- path: "/editPatient",
|
114
|
|
- name: "editPatient",
|
115
|
|
- component: () => import("@/pages/patients/editPatient")
|
|
107
|
+ path: '/editPatient',
|
|
108
|
+ name: 'editPatient',
|
|
109
|
+ component: () => import('@/pages/patients/editPatient')
|
116
|
110
|
},
|
117
|
111
|
// 全部排班
|
118
|
112
|
{
|
119
|
|
- path: "/editScheduling",
|
120
|
|
- name: "editscheduling",
|
121
|
|
- component: () => import("@/pages/allScheduling/index")
|
|
113
|
+ path: '/editScheduling',
|
|
114
|
+ name: 'editscheduling',
|
|
115
|
+ component: () => import('@/pages/allScheduling/index')
|
122
|
116
|
},
|
123
|
117
|
// 全部透后宣教
|
124
|
118
|
{
|
125
|
|
- path: "/editEducation",
|
126
|
|
- name: "editeducation",
|
127
|
|
- component: () => import("@/pages/allEducation/index")
|
|
119
|
+ path: '/editEducation',
|
|
120
|
+ name: 'editeducation',
|
|
121
|
+ component: () => import('@/pages/allEducation/index')
|
128
|
122
|
},
|
129
|
123
|
// 全部抢救记录
|
130
|
124
|
{
|
131
|
|
- path: "/rescuerecord",
|
132
|
|
- name: "rescuerecord",
|
133
|
|
- component: () => import("@/pages/allRescue/index")
|
|
125
|
+ path: '/rescuerecord',
|
|
126
|
+ name: 'rescuerecord',
|
|
127
|
+ component: () => import('@/pages/allRescue/index')
|
134
|
128
|
},
|
135
|
129
|
//
|
136
|
130
|
{
|
137
|
|
- path: "/patientdetail",
|
138
|
|
- name: "patientdetail",
|
139
|
|
- component: () => import("@/pages/doctorAdvice/index")
|
|
131
|
+ path: '/patientdetail',
|
|
132
|
+ name: 'patientdetail',
|
|
133
|
+ component: () => import('@/pages/doctorAdvice/index')
|
140
|
134
|
},
|
141
|
135
|
// 搜索
|
142
|
136
|
{
|
143
|
|
- path: "/search",
|
144
|
|
- name: "search",
|
145
|
|
- component: () => import("@/pages/search/index")
|
|
137
|
+ path: '/search',
|
|
138
|
+ name: 'search',
|
|
139
|
+ component: () => import('@/pages/search/index')
|
146
|
140
|
},
|
147
|
141
|
// 关于我们
|
148
|
142
|
{
|
|
@@ -158,86 +152,86 @@ export default new Router({
|
158
|
152
|
name: 'longdialysis',
|
159
|
153
|
component: () => import('@/pages/allLongDialysis/index')
|
160
|
154
|
},
|
161
|
|
- //,
|
|
155
|
+ //,
|
162
|
156
|
{
|
163
|
157
|
path: '/alldoctoradvice',
|
164
|
158
|
name: '/alldoctoradvice',
|
165
|
159
|
component: () => import('@/pages/allDoctorAdvice/index')
|
166
|
160
|
},
|
167
|
161
|
{
|
168
|
|
- path: "/product",
|
169
|
|
- name: "Product",
|
170
|
|
- component: () => import("@/pages/product/index")
|
|
162
|
+ path: '/product',
|
|
163
|
+ name: 'Product',
|
|
164
|
+ component: () => import('@/pages/product/index')
|
171
|
165
|
},
|
172
|
166
|
{
|
173
|
|
- path: "/main",
|
174
|
|
- name: "main",
|
175
|
|
- component: () => import("@/pages/main/index")
|
|
167
|
+ path: '/main',
|
|
168
|
+ name: 'main',
|
|
169
|
+ component: () => import('@/pages/main/index')
|
176
|
170
|
},
|
177
|
171
|
{
|
178
|
|
- path: "/details",
|
179
|
|
- name: "details",
|
180
|
|
- component: () => import("@/pages/main/DetailsPage")
|
|
172
|
+ path: '/details',
|
|
173
|
+ name: 'details',
|
|
174
|
+ component: () => import('@/pages/main/DetailsPage')
|
181
|
175
|
},
|
182
|
176
|
{
|
183
|
|
- path: "/monitoring",
|
184
|
|
- name: "monitorPage",
|
185
|
|
- component: () => import("@/pages/monitoring/index")
|
|
177
|
+ path: '/monitoring',
|
|
178
|
+ name: 'monitorPage',
|
|
179
|
+ component: () => import('@/pages/monitoring/index')
|
186
|
180
|
},
|
187
|
181
|
{
|
188
|
|
- path: "/my",
|
189
|
|
- name: "my",
|
190
|
|
- component: () => import("@/pages/personal/index")
|
|
182
|
+ path: '/my',
|
|
183
|
+ name: 'my',
|
|
184
|
+ component: () => import('@/pages/personal/index')
|
191
|
185
|
},
|
192
|
186
|
{
|
193
|
|
- path: "/advice",
|
194
|
|
- name: "doctorAdvice",
|
195
|
|
- component: () => import("@/pages/advice/index")
|
|
187
|
+ path: '/advice',
|
|
188
|
+ name: 'doctorAdvice',
|
|
189
|
+ component: () => import('@/pages/advice/index')
|
196
|
190
|
},
|
197
|
191
|
{
|
198
|
|
- path: "/EditPersonal",
|
199
|
|
- name: "EditPersonal",
|
200
|
|
- component: () => import("@/pages/personal/EditPersonal")
|
|
192
|
+ path: '/EditPersonal',
|
|
193
|
+ name: 'EditPersonal',
|
|
194
|
+ component: () => import('@/pages/personal/EditPersonal')
|
201
|
195
|
},
|
202
|
196
|
{
|
203
|
|
- path: "/ElectronicSignature",
|
204
|
|
- name: "ElectronicSignature",
|
205
|
|
- component: () => import("@/pages/personal/ElectronicSignature")
|
|
197
|
+ path: '/ElectronicSignature',
|
|
198
|
+ name: 'ElectronicSignature',
|
|
199
|
+ component: () => import('@/pages/personal/ElectronicSignature')
|
206
|
200
|
},
|
207
|
201
|
{
|
208
|
|
- path: "/Print",
|
209
|
|
- name: "Print",
|
210
|
|
- component: () => import("@/pages/main/PrintIndex")
|
|
202
|
+ path: '/Print',
|
|
203
|
+ name: 'Print',
|
|
204
|
+ component: () => import('@/pages/main/PrintIndex')
|
211
|
205
|
},
|
212
|
206
|
{
|
213
|
|
- path: "/add_urgent_schedule",
|
214
|
|
- name: "AddUrgentSchedule",
|
215
|
|
- component: () => import("@/pages/main/add_urgent_schedule")
|
|
207
|
+ path: '/add_urgent_schedule',
|
|
208
|
+ name: 'AddUrgentSchedule',
|
|
209
|
+ component: () => import('@/pages/main/add_urgent_schedule')
|
216
|
210
|
},
|
217
|
211
|
{
|
218
|
|
- path: "/Prints",
|
219
|
|
- name: "Prints",
|
220
|
|
- component: () => import("@/pages/main/Print")
|
|
212
|
+ path: '/Prints',
|
|
213
|
+ name: 'Prints',
|
|
214
|
+ component: () => import('@/pages/main/Print')
|
221
|
215
|
},
|
222
|
216
|
{
|
223
|
|
- path: "/forgetPassword",
|
224
|
|
- name: "forgetPassword",
|
225
|
|
- component: () => import("@/pages/personal/ForgetPassword")
|
|
217
|
+ path: '/forgetPassword',
|
|
218
|
+ name: 'forgetPassword',
|
|
219
|
+ component: () => import('@/pages/personal/ForgetPassword')
|
226
|
220
|
},
|
227
|
221
|
{
|
228
|
|
- path: "/changePassword",
|
229
|
|
- name: "changePassword",
|
230
|
|
- component: () => import("@/pages/personal/ChangePassword")
|
|
222
|
+ path: '/changePassword',
|
|
223
|
+ name: 'changePassword',
|
|
224
|
+ component: () => import('@/pages/personal/ChangePassword')
|
231
|
225
|
},
|
232
|
226
|
{
|
233
|
|
- path: "/privacy",
|
234
|
|
- name: "privacy",
|
235
|
|
- component: () => import("@/pages/privacy/index")
|
|
227
|
+ path: '/privacy',
|
|
228
|
+ name: 'privacy',
|
|
229
|
+ component: () => import('@/pages/privacy/index')
|
236
|
230
|
},
|
237
|
231
|
{
|
238
|
|
- path: "/userAgreement",
|
239
|
|
- name: "userAgreement",
|
240
|
|
- component: () => import("@/pages/userAgreement/index")
|
|
232
|
+ path: '/userAgreement',
|
|
233
|
+ name: 'userAgreement',
|
|
234
|
+ component: () => import('@/pages/userAgreement/index')
|
241
|
235
|
}
|
242
|
236
|
]
|
243
|
237
|
})
|