|
@@ -1,14 +1,14 @@
|
1
|
|
-import Layout from "@/views/layout/Layout";
|
|
1
|
+import Layout from '@/views/layout/Layout'
|
2
|
2
|
|
3
|
3
|
export default {
|
4
|
|
- path: "/qcd",
|
|
4
|
+ path: '/qcd',
|
5
|
5
|
component: Layout,
|
6
|
|
- redirect: "/qcd/dialysistotal",
|
7
|
|
- name: "qcd",
|
|
6
|
+ redirect: '/qcd/dialysistotal',
|
|
7
|
+ name: 'qcd',
|
8
|
8
|
alwaysShow: true,
|
9
|
9
|
meta: {
|
10
|
|
- title: "质控管理",
|
11
|
|
- icon: "statistics"
|
|
10
|
+ title: '质控管理',
|
|
11
|
+ icon: 'statistics'
|
12
|
12
|
},
|
13
|
13
|
children: [
|
14
|
14
|
// {
|
|
@@ -68,333 +68,343 @@ export default {
|
68
|
68
|
// }
|
69
|
69
|
// },
|
70
|
70
|
{
|
71
|
|
- path: "/qcd/patientanalysis/statisticalConfig",
|
72
|
|
- component: () => import("@/xt_pages/qcd/statisticalConfiguration"),
|
73
|
|
- name: "statisticalConfig",
|
|
71
|
+ path: '/qcd/patientanalysis/statisticalConfig',
|
|
72
|
+ component: () => import('@/xt_pages/qcd/statisticalConfiguration'),
|
|
73
|
+ name: 'statisticalConfig',
|
74
|
74
|
meta: {
|
75
|
|
- title: "统计配置",
|
|
75
|
+ title: '统计配置',
|
76
|
76
|
noCache: true
|
77
|
77
|
}
|
78
|
78
|
},
|
79
|
79
|
{
|
80
|
|
- path: "/qcd/basicInformationAnalysis",
|
81
|
|
- component: () => import("@/xt_pages/qcd/basicInformationAnalysis"),
|
82
|
|
- name: "basicInformationAnalysis",
|
|
80
|
+ path: '/qcd/basicInformationAnalysis',
|
|
81
|
+ component: () => import('@/xt_pages/qcd/basicInformationAnalysis'),
|
|
82
|
+ name: 'basicInformationAnalysis',
|
83
|
83
|
meta: {
|
84
|
|
- title: "基本信息统计",
|
|
84
|
+ title: '基本信息统计',
|
85
|
85
|
noCache: true
|
86
|
86
|
}
|
87
|
87
|
},
|
88
|
88
|
{
|
89
|
|
- path: "/qcd/officesControlAnalysis/time",
|
90
|
|
- component: () => import("@/xt_pages/qcd/officesControlAnalysis/time"),
|
91
|
|
- name: "officesControlAnalysis",
|
|
89
|
+ path: '/qcd/officesControlAnalysis/time',
|
|
90
|
+ component: () => import('@/xt_pages/qcd/officesControlAnalysis/time'),
|
|
91
|
+ name: 'officesControlAnalysis',
|
92
|
92
|
meta: {
|
93
|
|
- title: "科室质控达标统计",
|
|
93
|
+ title: '科室质控达标统计',
|
94
|
94
|
noCache: true
|
95
|
95
|
}
|
96
|
96
|
},
|
97
|
97
|
{
|
98
|
|
- path: "/qcd/officesControlAnalysis/project",
|
|
98
|
+ path: '/qcd/officesControlAnalysis/project',
|
99
|
99
|
hidden: true,
|
100
|
100
|
is_menu: false,
|
101
|
|
- component: () => import("@/xt_pages/qcd/officesControlAnalysis/project"),
|
102
|
|
- name: "patientControlAnalysisProject",
|
|
101
|
+ component: () => import('@/xt_pages/qcd/officesControlAnalysis/project'),
|
|
102
|
+ name: 'patientControlAnalysisProject',
|
103
|
103
|
meta: {
|
104
|
|
- title: "科室质控达标统计按项目",
|
|
104
|
+ title: '科室质控达标统计按项目',
|
105
|
105
|
noCache: true
|
106
|
106
|
}
|
107
|
107
|
},
|
108
|
108
|
{
|
109
|
|
- path: "/qcd/patientControlAnalysis",
|
110
|
|
- component: () => import("@/xt_pages/qcd/patientControlAnalysis"),
|
111
|
|
- name: "patientControlAnalysisTime",
|
|
109
|
+ path: '/qcd/patientControlAnalysis',
|
|
110
|
+ component: () => import('@/xt_pages/qcd/patientControlAnalysis'),
|
|
111
|
+ name: 'patientControlAnalysisTime',
|
112
|
112
|
meta: {
|
113
|
|
- title: "患者质控达标统计",
|
|
113
|
+ title: '患者质控达标统计',
|
114
|
114
|
noCache: true
|
115
|
115
|
}
|
116
|
116
|
},
|
117
|
117
|
{
|
118
|
|
- path: "/qcd/patientComplianceDetails",
|
|
118
|
+ path: '/qcd/patientComplianceDetails',
|
119
|
119
|
hidden: true,
|
120
|
120
|
is_menu: false,
|
121
|
|
- component: () => import("@/xt_pages/qcd/patientComplianceDetails"),
|
122
|
|
- name: "patientComplianceDetails",
|
|
121
|
+ component: () => import('@/xt_pages/qcd/patientComplianceDetails'),
|
|
122
|
+ name: 'patientComplianceDetails',
|
123
|
123
|
meta: {
|
124
|
|
- title: "患者质控达标统计详情",
|
|
124
|
+ title: '患者质控达标统计详情',
|
125
|
125
|
noCache: true
|
126
|
126
|
}
|
127
|
127
|
},
|
128
|
128
|
|
129
|
129
|
{
|
130
|
|
- path: "/qcd/treatmentControlAnalysis/time",
|
131
|
|
- component: () => import("@/xt_pages/qcd/treatmentControlAnalysis/time"),
|
132
|
|
- name: "treatmentControlAnalysis",
|
|
130
|
+ path: '/qcd/treatmentControlAnalysis/time',
|
|
131
|
+ component: () => import('@/xt_pages/qcd/treatmentControlAnalysis/time'),
|
|
132
|
+ name: 'treatmentControlAnalysis',
|
133
|
133
|
meta: {
|
134
|
|
- title: "治疗信息统计",
|
|
134
|
+ title: '治疗信息统计',
|
135
|
135
|
noCache: true
|
136
|
136
|
}
|
137
|
137
|
},
|
138
|
138
|
{
|
139
|
|
- path: "/qcd/treatmentControlAnalysis/check",
|
|
139
|
+ path: '/qcd/treatmentControlAnalysis/check',
|
140
|
140
|
hidden: true,
|
141
|
141
|
is_menu: false,
|
142
|
|
- component: () => import("@/xt_pages/qcd/treatmentControlAnalysis/check"),
|
143
|
|
- name: "treatmentControlAnalysisCheck",
|
|
142
|
+ component: () => import('@/xt_pages/qcd/treatmentControlAnalysis/check'),
|
|
143
|
+ name: 'treatmentControlAnalysisCheck',
|
144
|
144
|
meta: {
|
145
|
|
- title: "治疗信息统计检验检查",
|
|
145
|
+ title: '治疗信息统计检验检查',
|
146
|
146
|
noCache: true
|
147
|
147
|
}
|
148
|
148
|
},
|
149
|
149
|
{
|
150
|
|
- path: "/qcd/indicatorControlAnalysis/analysis",
|
|
150
|
+ path: '/qcd/indicatorControlAnalysis/analysis',
|
151
|
151
|
component: () =>
|
152
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/analysis"),
|
153
|
|
- name: "indicatorControlAnalysis",
|
|
152
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/analysis'),
|
|
153
|
+ name: 'indicatorControlAnalysis',
|
154
|
154
|
meta: {
|
155
|
|
- title: "指标评估统计",
|
|
155
|
+ title: '指标评估统计',
|
156
|
156
|
noCache: true
|
157
|
157
|
}
|
158
|
158
|
},
|
159
|
159
|
{
|
160
|
|
- path: "/qcd/indicatorControlAnalysis/process",
|
|
160
|
+ path: '/qcd/indicatorControlAnalysis/process',
|
161
|
161
|
hidden: true,
|
162
|
162
|
is_menu: false,
|
163
|
163
|
component: () =>
|
164
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/process"),
|
165
|
|
- name: "process",
|
|
164
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/process'),
|
|
165
|
+ name: 'process',
|
166
|
166
|
meta: {
|
167
|
|
- title: "指标评估统计透析过程",
|
|
167
|
+ title: '指标评估统计透析过程',
|
168
|
168
|
noCache: true
|
169
|
169
|
}
|
170
|
170
|
},
|
171
|
171
|
{
|
172
|
|
- path: "/qcd/indicatorControlAnalysis/monitor",
|
|
172
|
+ path: '/qcd/indicatorControlAnalysis/monitor',
|
173
|
173
|
hidden: true,
|
174
|
174
|
is_menu: false,
|
175
|
175
|
component: () =>
|
176
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/monitor"),
|
177
|
|
- name: "monitor",
|
|
176
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/monitor'),
|
|
177
|
+ name: 'monitor',
|
178
|
178
|
meta: {
|
179
|
|
- title: "指标评估统计透析监测",
|
|
179
|
+ title: '指标评估统计透析监测',
|
180
|
180
|
noCache: true
|
181
|
181
|
}
|
182
|
182
|
},
|
183
|
183
|
{
|
184
|
|
- path: "/qcd/indicatorControlAnalysis/bloodPressure",
|
|
184
|
+ path: '/qcd/indicatorControlAnalysis/bloodPressure',
|
185
|
185
|
hidden: true,
|
186
|
186
|
is_menu: false,
|
187
|
187
|
component: () =>
|
188
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/bloodPressure"),
|
189
|
|
- name: "bloodPressure",
|
|
188
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/bloodPressure'),
|
|
189
|
+ name: 'bloodPressure',
|
190
|
190
|
meta: {
|
191
|
|
- title: "指标评估统计血压",
|
|
191
|
+ title: '指标评估统计血压',
|
192
|
192
|
noCache: true
|
193
|
193
|
}
|
194
|
194
|
},
|
195
|
195
|
{
|
196
|
|
- path: "/qcd/indicatorControlAnalysis/bloodPressureDetails",
|
|
196
|
+ path: '/qcd/indicatorControlAnalysis/bloodPressureDetails',
|
197
|
197
|
hidden: true,
|
198
|
198
|
is_menu: false,
|
199
|
199
|
component: () =>
|
200
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/bloodPressureDetails"),
|
201
|
|
- name: "bloodPressureDetails",
|
|
200
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/bloodPressureDetails'),
|
|
201
|
+ name: 'bloodPressureDetails',
|
202
|
202
|
meta: {
|
203
|
|
- title: "指标评估统计血压详情",
|
|
203
|
+ title: '指标评估统计血压详情',
|
204
|
204
|
noCache: true
|
205
|
205
|
}
|
206
|
206
|
},
|
207
|
207
|
{
|
208
|
|
- path: "/qcd/indicatorControlAnalysis/weight",
|
|
208
|
+ path: '/qcd/indicatorControlAnalysis/weight',
|
209
|
209
|
hidden: true,
|
210
|
210
|
is_menu: false,
|
211
|
|
- component: () => import("@/xt_pages/qcd/indicatorControlAnalysis/weight"),
|
212
|
|
- name: "weight",
|
|
211
|
+ component: () => import('@/xt_pages/qcd/indicatorControlAnalysis/weight'),
|
|
212
|
+ name: 'weight',
|
213
|
213
|
meta: {
|
214
|
|
- title: "指标评估体重",
|
|
214
|
+ title: '指标评估体重',
|
215
|
215
|
noCache: true
|
216
|
216
|
}
|
217
|
217
|
},
|
218
|
218
|
{
|
219
|
|
- path: "/qcd/indicatorControlAnalysis/weightDetails",
|
|
219
|
+ path: '/qcd/indicatorControlAnalysis/weightDetails',
|
220
|
220
|
hidden: true,
|
221
|
221
|
is_menu: false,
|
222
|
222
|
component: () =>
|
223
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/weightDetails"),
|
224
|
|
- name: "weightDetails",
|
|
223
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/weightDetails'),
|
|
224
|
+ name: 'weightDetails',
|
225
|
225
|
meta: {
|
226
|
|
- title: "指标评估体重详情",
|
|
226
|
+ title: '指标评估体重详情',
|
227
|
227
|
noCache: true
|
228
|
228
|
}
|
229
|
229
|
},
|
230
|
230
|
{
|
231
|
|
- path: "/qcd/analysisDetails",
|
|
231
|
+ path: '/qcd/analysisDetails',
|
232
|
232
|
hidden: true,
|
233
|
233
|
is_menu: false,
|
234
|
234
|
component: () =>
|
235
|
|
- import("@/xt_pages/qcd/indicatorControlAnalysis/analysisDetails"),
|
236
|
|
- name: "analysisDetails",
|
|
235
|
+ import('@/xt_pages/qcd/indicatorControlAnalysis/analysisDetails'),
|
|
236
|
+ name: 'analysisDetails',
|
237
|
237
|
meta: {
|
238
|
|
- title: "化验指标评估统计详情",
|
|
238
|
+ title: '化验指标评估统计详情',
|
239
|
239
|
noCache: true
|
240
|
240
|
}
|
241
|
241
|
},
|
242
|
242
|
{
|
243
|
|
- path: "/qcd/workAnalysis/doctor",
|
244
|
|
- component: () => import("@/xt_pages/qcd/workAnalysis/doctor"),
|
245
|
|
- name: "workAnalysisDoctor",
|
|
243
|
+ path: '/qcd/workAnalysis/doctor',
|
|
244
|
+ component: () => import('@/xt_pages/qcd/workAnalysis/doctor'),
|
|
245
|
+ name: 'workAnalysisDoctor',
|
246
|
246
|
meta: {
|
247
|
|
- title: "工作量分析统计",
|
|
247
|
+ title: '工作量分析统计',
|
248
|
248
|
noCache: true
|
249
|
249
|
}
|
250
|
250
|
},
|
251
|
251
|
{
|
252
|
|
- path: "/qcd/workAnalysis/nurse",
|
|
252
|
+ path: '/qcd/workAnalysis/nurse',
|
253
|
253
|
hidden: true,
|
254
|
254
|
is_menu: false,
|
255
|
|
- component: () => import("@/xt_pages/qcd/workAnalysis/nurse"),
|
256
|
|
- name: "workAnalysisNurse",
|
|
255
|
+ component: () => import('@/xt_pages/qcd/workAnalysis/nurse'),
|
|
256
|
+ name: 'workAnalysisNurse',
|
257
|
257
|
meta: {
|
258
|
|
- title: "工作量分析统计护士",
|
|
258
|
+ title: '工作量分析统计护士',
|
|
259
|
+ noCache: true
|
|
260
|
+ }
|
|
261
|
+ },
|
|
262
|
+ {
|
|
263
|
+ path: '/qcd/a',
|
|
264
|
+ hidden: true,
|
|
265
|
+ is_menu: false,
|
|
266
|
+ component: () => import('@/xt_pages/qcd/a'),
|
|
267
|
+ name: 'workAnalysisNurse',
|
|
268
|
+ meta: {
|
|
269
|
+ title: '工作量分析统计护士',
|
259
|
270
|
noCache: true
|
260
|
271
|
}
|
261
|
272
|
},
|
262
|
|
-
|
263
|
273
|
{
|
264
|
|
- path: "/qcd/patientanalysis/checkStatistical",
|
|
274
|
+ path: '/qcd/patientanalysis/checkStatistical',
|
265
|
275
|
hidden: true,
|
266
|
276
|
is_menu: false,
|
267
|
|
- component: () => import("@/xt_pages/qcd/checkStatistical"),
|
268
|
|
- name: "checkStatistical",
|
|
277
|
+ component: () => import('@/xt_pages/qcd/checkStatistical'),
|
|
278
|
+ name: 'checkStatistical',
|
269
|
279
|
meta: {
|
270
|
|
- title: "检验检查统计配置",
|
|
280
|
+ title: '检验检查统计配置',
|
271
|
281
|
noCache: true
|
272
|
282
|
}
|
273
|
283
|
},
|
274
|
284
|
{
|
275
|
|
- path: "/qcd/patientanalysis/weight",
|
|
285
|
+ path: '/qcd/patientanalysis/weight',
|
276
|
286
|
hidden: true,
|
277
|
287
|
is_menu: false,
|
278
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/weight"),
|
279
|
|
- name: "patientAnalysisWeight",
|
|
288
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/weight'),
|
|
289
|
+ name: 'patientAnalysisWeight',
|
280
|
290
|
meta: {
|
281
|
|
- title: "体重分析",
|
|
291
|
+ title: '体重分析',
|
282
|
292
|
noCache: true
|
283
|
293
|
}
|
284
|
294
|
},
|
285
|
295
|
{
|
286
|
|
- path: "/qcd/patientanalysis/bloodpressure",
|
|
296
|
+ path: '/qcd/patientanalysis/bloodpressure',
|
287
|
297
|
hidden: true,
|
288
|
298
|
is_menu: false,
|
289
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/bloodPressure"),
|
290
|
|
- name: "patientAnalysisBloodPressure",
|
|
299
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/bloodPressure'),
|
|
300
|
+ name: 'patientAnalysisBloodPressure',
|
291
|
301
|
meta: {
|
292
|
|
- title: "血压分析",
|
|
302
|
+ title: '血压分析',
|
293
|
303
|
noCache: true
|
294
|
304
|
}
|
295
|
305
|
},
|
296
|
306
|
{
|
297
|
|
- path: "/qcd/patientanalysis/dialysisage",
|
|
307
|
+ path: '/qcd/patientanalysis/dialysisage',
|
298
|
308
|
hidden: true,
|
299
|
309
|
is_menu: false,
|
300
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/dialysisAge"),
|
301
|
|
- name: "patientAnalysisDialysisAge",
|
|
310
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/dialysisAge'),
|
|
311
|
+ name: 'patientAnalysisDialysisAge',
|
302
|
312
|
meta: {
|
303
|
|
- title: "透析龄分析",
|
|
313
|
+ title: '透析龄分析',
|
304
|
314
|
noCache: true
|
305
|
315
|
}
|
306
|
316
|
},
|
307
|
317
|
{
|
308
|
|
- path: "/qcd/patientanalysis/lapseto",
|
|
318
|
+ path: '/qcd/patientanalysis/lapseto',
|
309
|
319
|
hidden: true,
|
310
|
320
|
is_menu: false,
|
311
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/lapseto"),
|
312
|
|
- name: "patientAnalysisLapseto",
|
|
321
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/lapseto'),
|
|
322
|
+ name: 'patientAnalysisLapseto',
|
313
|
323
|
meta: {
|
314
|
|
- title: "转归分析",
|
|
324
|
+ title: '转归分析',
|
315
|
325
|
noCache: true
|
316
|
326
|
}
|
317
|
327
|
},
|
318
|
328
|
{
|
319
|
|
- path: "/qcd/patientanalysis/complication",
|
|
329
|
+ path: '/qcd/patientanalysis/complication',
|
320
|
330
|
hidden: true,
|
321
|
331
|
is_menu: false,
|
322
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/complication"),
|
323
|
|
- name: "patientAnalysisComplication",
|
|
332
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/complication'),
|
|
333
|
+ name: 'patientAnalysisComplication',
|
324
|
334
|
meta: {
|
325
|
|
- title: "并发症分析",
|
|
335
|
+ title: '并发症分析',
|
326
|
336
|
noCache: true
|
327
|
337
|
}
|
328
|
338
|
},
|
329
|
339
|
{
|
330
|
|
- path: "/qcd/patientanalysis/infectiousdiseases",
|
|
340
|
+ path: '/qcd/patientanalysis/infectiousdiseases',
|
331
|
341
|
hidden: true,
|
332
|
342
|
is_menu: false,
|
333
|
343
|
component: () =>
|
334
|
|
- import("@/xt_pages/qcd/patientAnalysis/infectiousDiseases"),
|
335
|
|
- name: "patientAnalysisInfectiousDiseases",
|
|
344
|
+ import('@/xt_pages/qcd/patientAnalysis/infectiousDiseases'),
|
|
345
|
+ name: 'patientAnalysisInfectiousDiseases',
|
336
|
346
|
meta: {
|
337
|
|
- title: "传染病分析",
|
|
347
|
+ title: '传染病分析',
|
338
|
348
|
noCache: true
|
339
|
349
|
}
|
340
|
350
|
},
|
341
|
351
|
{
|
342
|
|
- path: "/qcd/pa/person/lapseto",
|
|
352
|
+ path: '/qcd/pa/person/lapseto',
|
343
|
353
|
hidden: true,
|
344
|
354
|
is_menu: false,
|
345
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/person/lapseto"),
|
346
|
|
- name: "paPersonLapseto",
|
|
355
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/person/lapseto'),
|
|
356
|
+ name: 'paPersonLapseto',
|
347
|
357
|
meta: {
|
348
|
|
- title: "转归",
|
|
358
|
+ title: '转归',
|
349
|
359
|
noCache: true
|
350
|
360
|
}
|
351
|
361
|
},
|
352
|
362
|
{
|
353
|
|
- path: "/qcd/pa/person/weight",
|
|
363
|
+ path: '/qcd/pa/person/weight',
|
354
|
364
|
hidden: true,
|
355
|
365
|
is_menu: false,
|
356
|
|
- component: () => import("@/xt_pages/qcd/patientAnalysis/person/weight"),
|
357
|
|
- name: "paPersonWeight",
|
|
366
|
+ component: () => import('@/xt_pages/qcd/patientAnalysis/person/weight'),
|
|
367
|
+ name: 'paPersonWeight',
|
358
|
368
|
meta: {
|
359
|
|
- title: "体重",
|
|
369
|
+ title: '体重',
|
360
|
370
|
noCache: true
|
361
|
371
|
}
|
362
|
372
|
},
|
363
|
373
|
{
|
364
|
|
- path: "/qcd/pa/person/bloodpressure",
|
|
374
|
+ path: '/qcd/pa/person/bloodpressure',
|
365
|
375
|
hidden: true,
|
366
|
376
|
is_menu: false,
|
367
|
377
|
component: () =>
|
368
|
|
- import("@/xt_pages/qcd/patientAnalysis/person/bloodPressure"),
|
369
|
|
- name: "paPersonBloodPressure",
|
|
378
|
+ import('@/xt_pages/qcd/patientAnalysis/person/bloodPressure'),
|
|
379
|
+ name: 'paPersonBloodPressure',
|
370
|
380
|
meta: {
|
371
|
|
- title: "血压",
|
|
381
|
+ title: '血压',
|
372
|
382
|
noCache: true
|
373
|
383
|
}
|
374
|
384
|
},
|
375
|
385
|
{
|
376
|
|
- path: "/qcd/pa/person/indicators",
|
|
386
|
+ path: '/qcd/pa/person/indicators',
|
377
|
387
|
hidden: true,
|
378
|
388
|
is_menu: false,
|
379
|
389
|
component: () =>
|
380
|
|
- import("@/xt_pages/qcd/patientAnalysis/person/indicators"),
|
381
|
|
- name: "paPersonIndicators",
|
|
390
|
+ import('@/xt_pages/qcd/patientAnalysis/person/indicators'),
|
|
391
|
+ name: 'paPersonIndicators',
|
382
|
392
|
meta: {
|
383
|
|
- title: "指标控制",
|
|
393
|
+ title: '指标控制',
|
384
|
394
|
noCache: true
|
385
|
395
|
}
|
386
|
396
|
},
|
387
|
397
|
{
|
388
|
|
- path: "/qcd/pa/person/oralmedicine",
|
|
398
|
+ path: '/qcd/pa/person/oralmedicine',
|
389
|
399
|
hidden: true,
|
390
|
400
|
is_menu: false,
|
391
|
401
|
component: () =>
|
392
|
|
- import("@/xt_pages/qcd/patientAnalysis/person/oralMedicine"),
|
393
|
|
- name: "paPersonOralMedicine",
|
|
402
|
+ import('@/xt_pages/qcd/patientAnalysis/person/oralMedicine'),
|
|
403
|
+ name: 'paPersonOralMedicine',
|
394
|
404
|
meta: {
|
395
|
|
- title: "口服药",
|
|
405
|
+ title: '口服药',
|
396
|
406
|
noCache: true
|
397
|
407
|
}
|
398
|
408
|
}
|
399
|
409
|
]
|
400
|
|
-};
|
|
410
|
+}
|