hospitalStation.js 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/hospitalStation',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'hospitalStation',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'hospitalStation',
  10. icon: 'hospitalStation',
  11. isChild: true
  12. },
  13. children: [
  14. //
  15. {
  16. path: '/hospitalStation/doctorDesk',
  17. component: () => import('@/xt_pages/hospitalStation/doctorDesk'),
  18. name: 'outpatientDoctorStationDoctorDesk',
  19. meta: { title: 'outpatientDoctorStationDoctorDesk', noCache: true }
  20. },
  21. {
  22. path: '/hospitalStation/pastInquiries',
  23. component: () => import('@/xt_pages/hospitalStation/pastInquiries'),
  24. name: 'pastInquiries',
  25. meta: { title: 'pastInquiries', noCache: true }
  26. },
  27. // {
  28. // path: '/hospitalStation/templateManagement',
  29. // component: () => import('@/xt_pages/hospitalStation/templateManagement'),
  30. // name: 'outpatientDoctorStationTemplateManagement',
  31. // meta: { title: 'outpatientDoctorStationTemplateManagement', noCache: true }
  32. // },
  33. // {
  34. // path: '/hospitalStation/print',
  35. // component: () => import('@/xt_pages/hospitalStation/print'),
  36. // hidden: true,
  37. // is_menu: false,
  38. // name: 'outpatientDoctorStationPrint',
  39. // meta: { title: 'outpatientDoctorStationPrint', noCache: true }
  40. // },
  41. // {
  42. // path: '/hospitalStation/printtwo',
  43. // component: () => import('@/xt_pages/hospitalStation/printtwo'),
  44. // hidden: true,
  45. // is_menu: false,
  46. // name: 'outpatientDoctorStationPrint',
  47. // meta: { title: 'outpatientDoctorStationPrint', noCache: true }
  48. // },
  49. // {
  50. // path: '/hospitalStation/recordPrint',
  51. // component: () => import('@/xt_pages/hospitalStation/recordPrint'),
  52. // hidden: true,
  53. // is_menu: false,
  54. // name: 'outpatientDoctorStationRecordPrint',
  55. // meta: { title: 'outpatientDoctorStationRecordPrint', noCache: true }
  56. // },
  57. // {
  58. // path: '/hospitalStation/treatPrint',
  59. // component: () => import('@/xt_pages/hospitalStation/treatPrint'),
  60. // hidden: true,
  61. // is_menu: false,
  62. // name: 'outpatientDoctorStationTreatPrint',
  63. // meta: { title: 'outpatientDoctorStationTreatPrint', noCache: true }
  64. // },
  65. //
  66. // {
  67. // path: '/hospitalStation/printone',
  68. // component: () => import('@/xt_pages/hospitalStation/template/printOne'),
  69. // hidden: true,
  70. // is_menu: false,
  71. // name: 'outpatientDoctorStationPrint',
  72. // meta: { title: 'outpatientDoctorStationPrint', noCache: true }
  73. // },
  74. ]
  75. }