outpatientDoctorStation.js 3.2KB

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