123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/patients',
- component: Layout,
- redirect: 'noredirect',
- name: 'User',
- meta: {
- title: 'user',
- icon: 'bingren'
- },
- children: [{
- path: '/patients/patients',
- component: () => import('@/xt_pages/user/patients'),
- name: 'Patient',
- meta: {
- title: 'patient',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id',
- component: () => import('@/xt_pages/user/patientInfo'),
- hidden: true,
- is_menu: false,
- name: 'patient Page',
- meta: {
- title: 'patientPage',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/edit',
- component: () => import('@/xt_pages/user/editPatient'),
- hidden: true,
- is_menu: false,
- name: 'Edit Patient',
- meta: {
- title: 'editPatient',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/dialysisSolution',
- component: () => import('@/xt_pages/user/dialysisSolution'),
- hidden: true,
- is_menu: false,
- name: 'dialysisSolution',
- meta: {
- title: 'dialysisSolution',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/weight',
- component: () => import('@/xt_pages/user/weight'),
- hidden: true,
- is_menu: false,
- name: 'weight',
- meta: {
- title: 'weight',
- noCache: true
- }
- },
-
- {
- path: '/patients/patient/:id/vascularAccess',
- component: () => import('@/xt_pages/user/vascularAccess'),
- hidden: true,
- is_menu: false,
- name: 'vascularAccess',
- meta: {
- title: 'vascularAccess',
- noCache: true
- }
- },
-
-
- {
- path: '/patients/patient/:mid/vascularAccessDetail/:pid',
- component: () => import('@/xt_pages/user/vascularAccessDetail'),
- hidden: true,
- is_menu: false,
- name: 'vascularAccessDetail',
- meta: {
- title: 'vascularAccessDetail',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/dialysisRecord',
- component: () => import('@/xt_pages/user/dialysisRecord'),
- hidden: true,
- is_menu: false,
- name: 'dialysisRecord',
- meta: {
- title: 'dialysisRecord',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/scheduling',
- component: () => import('@/xt_pages/user/scheduling'),
- hidden: true,
- is_menu: false,
- name: 'scheduling',
- meta: {
- title: 'scheduling',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/doctorAdvice',
- component: () => import('@/xt_pages/user/doctorAdvice'),
- hidden: true,
- is_menu: false,
- name: 'doctorAdvice',
- meta: {
- title: 'doctorAdvice',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/dryWeight',
- component: () => import('@/xt_pages/user/dryWeight'),
- hidden: true,
- is_menu: false,
- name: 'dryWeight',
- meta: { title: 'dryWeight', noCache: true }
- },
- {
- path: '/patients/inspection',
- component: () => import('@/xt_pages/user/inspection'),
- hidden: true,
- is_menu: false,
- name: 'Inspection',
- meta: {
- title: 'inspection',
- noCache: true
- }
- },
- {
- path: '/patients/newInspection',
- component: () => import('@/xt_pages/user/lapsoInspection'),
- hidden: true,
- is_menu: false,
- name: 'newInspection',
- meta: { title: 'newInspection', noCache: true }
- },
- {
- path: '/patients/patients/:id/inspectionInfectious',
- component: () => import('@/xt_pages/user/inspectionInfectious'),
- hidden: true,
- is_menu: false,
- name: 'inspectionInfectious',
- meta: {
- title: 'inspectionInfectious',
- noCache: true
- }
- },
- {
- path: '/patient/patient/:id/templateSummary',
- component: () => import('@/xt_pages/user/templateSummary'),
- hidden: true,
- is_menu: false,
- name: 'templateSummary',
- meta: {
- title: 'templateSummary',
- noCache: true
- }
- },
- {
- path: '/patient/patient/:id/hospitalSummary',
- component: () => import('@/xt_pages/user/hospitalSummary'),
- hidden: true,
- is_menu: false,
- name: 'hospitalSummary',
- meta: {
- title: 'hospitalSummary',
- noCache: true
- }
- },
- {
- path: '/patient/patient/:id/lapsoSummary',
- component: () => import('@/xt_pages/user/lapsoSummary'),
- hidden: true,
- is_menu: false,
- name: 'lapsoSummary',
- meta: {
- title: 'lapsoSummary',
- noCache: true
- }
- },
- {
- path: '/patients/course',
- component: () => import('@/xt_pages/user/courseOfDisease'),
- hidden: true,
- is_menu: false,
- name: 'CourseOfDiseaseManage',
- meta: {
- title: 'CourseOfDiseaseManage',
- noCache: true
- }
- },
- {
- path: '/patients/sickhistory',
- component: () => import('@/xt_pages/user/sickHistory'),
- hidden: true,
- is_menu: false,
- name: 'sickHistory',
- meta: { title: 'sickHistory', noCache: true }
- },
- {
- path: '/patients/inspection_check',
- component: () => import('@/xt_pages/user/inspectionCheck'),
- hidden: true,
- is_menu: false,
- name: 'inspectionCheck',
- meta: { title: 'inspectionCheck', noCache: true }
- },
- {
- path: '/patients/ktv',
- component: () => import('@/xt_pages/user/ktv'),
- hidden: true,
- is_menu: false,
- name: 'ktv',
- meta: { title: 'ktv', noCache: true }
- },
- {
- path: '/patients/physicalexamination',
- component: () => import('@/xt_pages/user/Physicalexamination'),
- hidden: true,
- is_menu: false,
- name: 'physicalexamination',
- meta: { title: 'physicalexamination', noCache: true }
- },
- {
- path: '/patients/rescue',
- component: () => import('@/xt_pages/user/rescueRecord'),
- hidden: true,
- is_menu: false,
- name: 'RescueRecord',
- meta: {
- title: 'RescueRecord',
- noCache: true
- }
- },
- {
- path: '/patients/patient/:id/proeducation',
- component: () => import('@/xt_pages/user/proeducation'),
- hidden: true,
- is_menu: false,
- name: 'proeducation',
- meta: {
- title: 'proeducation',
- noCache: true
- }
- },
- {
- path: '/course/print',//coursePrint
- component: () => import('@/xt_pages/user/coursePrint'),
- hidden: true,
- is_menu: false,
- name: 'coursePrint',
- meta: {
- title: 'coursePrint',
- noCache: true
- }
- },
- {
- path: '/sickhistory/print',
- component: () => import('@/xt_pages/user/physiqueprinting'),
- hidden: true,
- is_menu: false,
- name: 'physiquePrinting',
- meta: {
- title: 'physiquePrinting',
- noCache: true
- }
- },
- {
- path: '/physique/print',
- component: () => import('@/xt_pages/user/physiqueprintingtwo'),
- hidden: true,
- is_menu: false,
- name: 'physiqueprintingtwo',
- meta: {
- title: 'physiqueprintingtwo',
- noCache: true
- }
- },
- {
- path: '/patient/patient/templateSummary/print',
- component: () => import('@/xt_pages/user/templateSummaryPrint'),
- hidden: true,
- is_menu: false,
- name: 'templateSummary',
- meta: {
- title: 'templateSummary',
- noCache: true
- }
- },
- // {
- // path: '/patient/patient/templateSummary/print_1',
- // component: () => import('@/xt_pages/user/templateSummaryPrint_1'),
- // hidden: true,
- // is_menu: false,
- // name: 'templateSummary_1',
- // meta: {
- // title: 'templateSummary_1',
- // noCache: true
- // }
- // },
- {
- path: '/patient/patient/hospitalSummary/print',
- component: () => import('@/xt_pages/user/hospitalSummaryPrint'),
- hidden: true,
- is_menu: false,
- name: 'templateSummary',
- meta: {
- title: 'templateSummary',
- noCache: true
- }
- },
- {
- path: '/patient/patient/:id/firstDisease',
- component: () => import('@/xt_pages/user/firstDisease'),
- hidden: true,
- is_menu: false,
- name: 'firstDisease',
- meta: {
- title: 'firstDisease',
- noCache: true
- }
- },
- {
- path: '/patient/patient/firstDisease/print',
- component: () => import('@/xt_pages/user/firstDiseasePrint'),
- hidden: true,
- is_menu: false,
- name: 'firstDiseasePrint',
- meta: {
- title: 'firstDiseasePrint',
- noCache: true
- }
- },
- // 评估工具/跌倒评估
- {
- path: '/patients/patient/:id/Fallassessment',
- component: () => import('@/xt_pages/user/evaluationtool/Fallassessment'),
- hidden: true,
- is_menu: false,
- name: 'Fallassessment',
- meta: {
- title: 'firstDiseasePrint',
- noCache: true
- }
- },
- {//小儿跌倒风险评估
- path: '/patients/patient/:id/pediatricFallAssessment',
- component: () => import('@/xt_pages/user/evaluationtool/pediatricFallAssessment'),
- hidden: true,
- is_menu: false,
- name: 'pediatricFallAssessment',
- meta: {
- title: 'pediatricFallAssessment',
- noCache: true
- }
- },
- {//压疮风险评估
- path: '/patients/patient/:id/pressuresore',
- component: () => import('@/xt_pages/user/evaluationtool/pressuresore'),
- hidden: true,
- is_menu: false,
- name: 'pressuresore',
- meta: {
- title: 'pressuresore',
- noCache: true
- }
- },
- {//oh压疮评估
- path: '/patients/patient/:id/OHpressuresore',
- component: () => import('@/xt_pages/user/evaluationtool/OHpressuresore'),
- hidden: true,
- is_menu: false,
- name: 'OHpressuresore',
- meta: {
- title: 'OHpressuresore',
- noCache: true
- }
- },
- {//日常生活能力评估
- path: '/patients/patient/:id/dailyLife',
- component: () => import('@/xt_pages/user/evaluationtool/dailyLife'),
- hidden: true,
- is_menu: false,
- name: 'dailyLife',
- meta: {
- title: 'dailyLife',
- noCache: true
- }
- },
- {//导管脱落风险评估
- path: '/patients/patient/:id/Cathetershedding',
- component: () => import('@/xt_pages/user/evaluationtool/Cathetershedding'),
- hidden: true,
- is_menu: false,
- name: 'Cathetershedding',
- meta: {
- title: 'Cathetershedding',
- noCache: true
- }
- },
- {//RASS及疼痛评估
- path: '/patients/patient/:id/RassAssessment',
- component: () => import('@/xt_pages/user/evaluationtool/RassAssessment'),
- hidden: true,
- is_menu: false,
- name: 'RassAssessment',
- meta: {
- title: 'RassAssessment',
- noCache: true
- }
- },
- {//营养状况评估
- path: '/patients/patient/:id/nourishmentAssessment',
- component: () => import('@/xt_pages/user/evaluationtool/nourishmentAssessment'),
- hidden: true,
- is_menu: false,
- name: 'nourishmentAssessment',
- meta: {
- title: 'nourishmentAssessment',
- noCache: true
- }
- },
- {//约束告知单
- path: '/patients/patient/:id/Constraintnotification',
- component: () => import('@/xt_pages/user/evaluationtool/Constraintnotification'),
- hidden: true,
- is_menu: false,
- name: 'Constraintnotification',
- meta: {
- title: 'Constraintnotification',
- noCache: true
- }
- },
- {//心理评估
- path: '/patients/patient/:id/mindAssessment',
- component: () => import('@/xt_pages/user/evaluationtool/mindAssessment'),
- hidden: true,
- is_menu: false,
- name: 'mindAssessment',
- meta: {
- title: 'mindAssessment',
- noCache: true
- }
- },
- {//瘙痒评估
- path: '/patients/patient/:id/pruritusAssessment',
- component: () => import('@/xt_pages/user/evaluationtool/pruritusAssessment'),
- hidden: true,
- is_menu: false,
- name: 'pruritusAssessment',
- meta: {
- title: 'pruritusAssessment',
- noCache: true
- }
- },
- {//血液透析患者评估
- path: '/patients/patient/:id/hemodialysis',
- component: () => import('@/xt_pages/user/evaluationtool/hemodialysis'),
- hidden: true,
- is_menu: false,
- name: 'hemodialysis',
- meta: {
- title: 'hemodialysis',
- noCache: true
- }
- },
- {//Glasgow昏迷评分量表
- path: '/patients/patient/:id/Glasgow',
- component: () => import('@/xt_pages/user/evaluationtool/Glasgow'),
- hidden: true,
- is_menu: false,
- name: 'Glasgow',
- meta: {
- title: 'Glasgow',
- noCache: true
- }
- },
- {//肌力评估表
- path: '/patients/patient/:id/Muscleforce',
- component: () => import('@/xt_pages/user/evaluationtool/Muscleforce'),
- hidden: true,
- is_menu: false,
- name: 'Muscleforce',
- meta: {
- title: 'Muscleforce',
- noCache: true
- }
- },
- {//跌倒评估历史评估
- path: '/patients/tumble_history',
- component: () => import('@/xt_pages/user/history/tumble_history'),
- hidden: true,
- is_menu: false,
- name: 'tunele_history',
- meta: {
- title: 'tunele_history',
- noCache: true
- }
- },
- {//小儿跌倒评估历史评估
- path: '/patients/Children_history',
- component: () => import('@/xt_pages/user/history/Children_history'),
- hidden: true,
- is_menu: false,
- name: 'Children_history',
- meta: {
- title: 'Children_history',
- noCache: true
- }
- },
- {//压疮历史评估
- path: '/patients/Pressure_history',
- component: () => import('@/xt_pages/user/history/Pressure_history'),
- hidden: true,
- is_menu: false,
- name: 'Pressure_history',
- meta: {
- title: 'Pressure_history',
- noCache: true
- }
- },
- {//日常历史评估
- path: '/patients/date_history',
- component: () => import('@/xt_pages/user/history/date_history'),
- hidden: true,
- is_menu: false,
- name: 'date_history',
- meta: {
- title: 'date_history',
- noCache: true
- }
- },
- {//导管脱落历史评估
- path: '/patients/daoguan_history',
- component: () => import('@/xt_pages/user/history/daoguan_history'),
- hidden: true,
- is_menu: false,
- name: 'daoguan_history',
- meta: {
- title: 'daoguan_history',
- noCache: true
- }
- },
- {//RASS历史评估
- path: '/patients/RASS_history',
- component: () => import('@/xt_pages/user/history/RASS_history'),
- hidden: true,
- is_menu: false,
- name: 'RASS_history',
- meta: {
- title: 'RASS_history',
- noCache: true
- }
- },
- {//营养历史评估
- path: '/patients/nourishment_history',
- component: () => import('@/xt_pages/user/history/nourishment_history'),
- hidden: true,
- is_menu: false,
- name: 'nourishment_history',
- meta: {
- title: 'nourishment_history',
- noCache: true
- }
- },
- {//心理历史评估
- path: '/patients/mind_history',
- component: () => import('@/xt_pages/user/history/mind_history'),
- hidden: true,
- is_menu: false,
- name: 'mind_history',
- meta: {
- title: 'mind_history',
- noCache: true
- }
- },
- {//瘙痒历史评估
- path: '/patients/pruritus_history',
- component: () => import('@/xt_pages/user/history/pruritus_history'),
- hidden: true,
- is_menu: false,
- name: 'pruritus_history',
- meta: {
- title: 'pruritus_history',
- noCache: true
- }
- },
- {//知情同意书
- path: '/patients/patient/:id/Informedconsent',
- component: () => import('@/xt_pages/user/Informed/Informedconsent'),
- hidden: true,
- is_menu: false,
- name: 'Informedconsent',
- meta: {
- title: 'Informedconsent',
- noCache: true
- }
- },
- // {//血管通路图 pruritus_history
- // path: '/patients/patient/:id/angiogram',
- // component: () => import('@/xt_pages/user/angiogram'),
- // hidden: true,
- // is_menu: false,
- // name: 'angiogram',
- // meta: {
- // title: 'angiogram',
- // noCache: true
- // }
- // },
- ]
- }
|