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