123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/qcd',
- component: Layout,
- redirect: '/qcd/dialysistotal',
- name: 'qcd',
- alwaysShow: true,
- meta: {
- title: '科室质控',
- icon: 'statistics'
- },
- children: [{
- path: '/statistics/index',
- component: () => import('@/xt_pages/statistics/index'),
- name: 'statistics',
- meta: {
- title: 'statistics',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/dialysistotal',
- component: () => import('@/xt_pages/qcd/dialysisTotal'),
- name: 'dialysistotal',
- meta: {
- title: '透析总量',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/processindicators',
- component: () => import('@/xt_pages/qcd/processIndicators'),
- name: 'processIndicators',
- meta: {
- title: '过程指标',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/outcomeIndicators/control',
- component: () => import('@/xt_pages/qcd/outcomeIndicators/control'),
- name: 'outcomeIndicatorsControl',
- meta: {
- title: '结果指标',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/outcomeIndicators/query',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/outcomeIndicators/query'),
- name: 'outcomeIndicatorsQuery',
- meta: {
- title: '指标查询',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/total',
- component: () => import('@/xt_pages/qcd/patientAnalysis/total'),
- name: 'patientAnalysisTotal',
- meta: {
- title: '患者分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/weight',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/weight'),
- name: 'patientAnalysisWeight',
- meta: {
- title: '体重分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/bloodpressure',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/bloodPressure'),
- name: 'patientAnalysisBloodPressure',
- meta: {
- title: '血压分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/dialysisage',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/dialysisAge'),
- name: 'patientAnalysisDialysisAge',
- meta: {
- title: '透析龄分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/lapseto',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/lapseto'),
- name: 'patientAnalysisLapseto',
- meta: {
- title: '转归分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/complication',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/complication'),
- name: 'patientAnalysisComplication',
- meta: {
- title: '并发症分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/patientanalysis/infectiousdiseases',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/infectiousDiseases'),
- name: 'patientAnalysisInfectiousDiseases',
- meta: {
- title: '传染病分析',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/pa/person/lapseto',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/person/lapseto'),
- name: 'paPersonLapseto',
- meta: {
- title: '转归',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/pa/person/weight',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/person/weight'),
- name: 'paPersonWeight',
- meta: {
- title: '体重',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/pa/person/bloodpressure',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/person/bloodPressure'),
- name: 'paPersonBloodPressure',
- meta: {
- title: '血压',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/pa/person/indicators',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/person/indicators'),
- name: 'paPersonIndicators',
- meta: {
- title: '指标控制',
- noCache: true,
-
- }
- },
- {
- path: '/qcd/pa/person/oralmedicine',
- hidden: true,
- is_menu: false,
- component: () => import('@/xt_pages/qcd/patientAnalysis/person/oralMedicine'),
- name: 'paPersonOralMedicine',
- meta: {
- title: '口服药',
- noCache: true,
-
- }
- }
- ]
- }
|