123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- 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/patients/:id/inspectionInfectious',
- component: () => import('@/xt_pages/user/inspectionInfectious'),
- hidden: true,
- is_menu: false,
- name: 'inspectionInfectious',
- meta: {
- title: 'inspectionInfectious',
- noCache: true
- }
- },
- {
- path: '/patients/patients/:id/templateSummary',
- component: () => import('@/xt_pages/user/templateSummary'),
- hidden: true,
- is_menu: false,
- name: 'templateSummary',
- meta: {
- title: 'templateSummary',
- 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/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',
- component: () => import('@/xt_pages/user/coursePrint'),
- hidden: true,
- is_menu: false,
- name: 'coursePrint',
- meta: {
- title: 'coursePrint',
- noCache: true
- }
- }
-
- ]
- }
|