12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/outpatientDoctorStation',
- component: Layout,
- redirect: 'noredirect',
- name: 'outpatientDoctorStation',
- alwaysShow: true,
- meta: {
- title: 'outpatientDoctorStation',
- icon: 'outpatientDoctorStation',
- isChild: true
- },
- children: [
- {
- path: '/outpatientDoctorStation/doctorDesk',
- component: () => import('@/xt_pages/outpatientDoctorStation/doctorDesk'),
- name: 'outpatientDoctorStationDoctorDesk',
- meta: { title: 'outpatientDoctorStationDoctorDesk', noCache: true }
- },
- {
- path: '/outpatientDoctorStation/pastInquiries',
- component: () => import('@/xt_pages/outpatientDoctorStation/pastInquiries'),
- name: 'outpatientDoctorStationPastInquiries',
- meta: { title: 'outpatientDoctorStationPastInquiries', noCache: true }
- },
- {
- path: '/outpatientDoctorStation/prescriptionTemplate',
- component: () => import('@/xt_pages/outpatientDoctorStation/prescriptionTemplate'),
- name: 'prescriptionTemplate',
- meta: { title: 'prescriptionTemplate', noCache: true }
- },
-
- {
- path: '/outpatientDoctorStation/prescriptionTemplatedetail',
- component: () => import('@/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail'),
- name: 'prescriptionTemplatedetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'prescriptionTemplatedetail', noCache: true }
- },
-
-
-
- {
- path: '/outpatientDoctorStation/templateManagement',
- component: () => import('@/xt_pages/outpatientDoctorStation/templateManagement'),
- name: 'outpatientDoctorStationTemplateManagement',
- meta: { title: 'outpatientDoctorStationTemplateManagement', noCache: true }
- },
- {
- path: '/outpatientDoctorStation/print',
- component: () => import('@/xt_pages/outpatientDoctorStation/print'),
- hidden: true,
- is_menu: false,
- name: 'outpatientDoctorStationPrint',
- meta: { title: 'outpatientDoctorStationPrint', noCache: true }
- },
- {
- path: '/outpatientDoctorStation/printtwo',
- component: () => import('@/xt_pages/outpatientDoctorStation/printtwo'),
- hidden: true,
- is_menu: false,
- name: 'outpatientDoctorStationPrint',
- meta: { title: 'outpatientDoctorStationPrint', noCache: true }
- },
- {
- path: '/outpatientDoctorStation/recordPrint',
- component: () => import('@/xt_pages/outpatientDoctorStation/recordPrint'),
- hidden: true,
- is_menu: false,
- name: 'outpatientDoctorStationRecordPrint',
- meta: { title: 'outpatientDoctorStationRecordPrint', noCache: true }
- },
- {
- path: '/outpatientDoctorStation/treatPrint',
- component: () => import('@/xt_pages/outpatientDoctorStation/treatPrint'),
- hidden: true,
- is_menu: false,
- name: 'outpatientDoctorStationTreatPrint',
- meta: { title: 'outpatientDoctorStationTreatPrint', noCache: true }
- },
-
- {
- path: '/outpatientDoctorStation/printone',
- component: () => import('@/xt_pages/outpatientDoctorStation/template/printOne'),
- hidden: true,
- is_menu: false,
- name: 'outpatientDoctorStationPrint',
- meta: { title: 'outpatientDoctorStationPrint', noCache: true }
- },
- ]
- }
|