Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

hospitalCharges.js 3.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/hospitalCharges',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'hospitalCharges',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'hospitalCharges',
  10. icon: 'hospitalCharges',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/hospitalCharges/outpatientChargesManagement',
  16. component: () => import('@/xt_pages/hospitalStation/outpatientChargesManagement'),
  17. name: 'hospitalChargesManagement',
  18. meta: { title: 'hospitalChargesManagement', noCache: true }
  19. },
  20. // {
  21. // path: '/outpatientCharges/outpatientInvoice',
  22. // component: () => import('@/xt_pages/outpatientCharges/outpatientInvoice'),
  23. // name: 'outpatientInvoice',
  24. // meta: { title: 'outpatientInvoice', noCache: true }
  25. // },
  26. // {
  27. // path: '/outpatientCharges/advancePayment',
  28. // component: () => import('@/xt_pages/outpatientCharges/advancePayment'),
  29. // name: 'advancePayment',
  30. // meta: { title: 'advancePayment', noCache: true }
  31. // },
  32. // {
  33. // path: '/outpatientCharges/labelPrinting',
  34. // component: () => import('@/xt_pages/outpatientCharges/labelPrinting'),
  35. // name: 'labelPrinting',
  36. // meta: { title: 'labelPrinting', noCache: true }
  37. // },
  38. {
  39. path: '/hospitalCharges/summary',
  40. component: () => import('@/xt_pages/hospitalStation/summary'),
  41. name: 'summary',
  42. meta: { title: 'summary', noCache: true }
  43. },
  44. {
  45. path: '/hospitalCharges/chargeDetailManagement',
  46. component: () => import('@/xt_pages/hospitalStation/chargeDetailManagement'),
  47. name: 'chargeDetailManagement',
  48. meta: { title: 'chargeDetailManagement', noCache: true }
  49. },
  50. // {
  51. // path: '/outpatientCharges/incomeStatistics',
  52. // component: () => import('@/xt_pages/outpatientCharges/incomeStatistics'),
  53. // name: 'incomeStatistics',
  54. // meta: { title: 'incomeStatistics', noCache: true }
  55. // },
  56. // {
  57. // path: '/outpatientCharges/costComparison',
  58. // component: () => import('@/xt_pages/outpatientCharges/costComparison'),
  59. // name: 'costComparison',
  60. // meta: { title: 'costComparison', noCache: true }
  61. // },
  62. {
  63. path: '/hospitalCharges/summaryDetail',
  64. component: () => import('@/xt_pages/hospitalStation/summaryDetail'),
  65. hidden: true,
  66. is_menu: false,
  67. name: 'summaryDetail',
  68. meta: { title: 'summaryDetail', noCache: true }
  69. },
  70. {
  71. path: '/outpatientCharges/treatPrint',
  72. component: () => import('@/xt_pages/outpatientCharges/treatPrint'),
  73. hidden: true,
  74. is_menu: false,
  75. name: 'outpatientChargesTreatPrint',
  76. meta: { title: 'outpatientChargesTreatPrint', noCache: true }
  77. },
  78. {
  79. path: '/outpatientCharges/print',
  80. component: () => import('@/xt_pages/outpatientCharges/print'),
  81. hidden: true,
  82. is_menu: false,
  83. name: 'outpatientChargesPrint',
  84. meta: { title: 'outpatientChargesPrint', noCache: true }
  85. },
  86. ]
  87. }