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

outpatientCharges.js 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/outpatientCharges',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'outpatientCharges',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'outpatientCharges',
  10. icon: 'outpatientCharges',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/outpatientCharges/outpatientChargesManagement',
  16. component: () => import('@/xt_pages/outpatientCharges/outpatientChargesManagement'),
  17. name: 'outpatientChargesManagement',
  18. meta: { title: 'outpatientChargesManagement', 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: '/outpatientCharges/summary',
  40. component: () => import('@/xt_pages/outpatientCharges/summary'),
  41. name: 'summary',
  42. meta: { title: 'summary', noCache: true }
  43. },
  44. {
  45. path: '/outpatientCharges/incomeStatistics',
  46. component: () => import('@/xt_pages/outpatientCharges/incomeStatistics'),
  47. name: 'incomeStatistics',
  48. meta: { title: 'incomeStatistics', noCache: true }
  49. },
  50. {
  51. path: '/outpatientCharges/summaryDetail',
  52. component: () => import('@/xt_pages/outpatientCharges/summaryDetail'),
  53. hidden: true,
  54. is_menu: false,
  55. name: 'summaryDetail',
  56. meta: { title: 'summaryDetail', noCache: true }
  57. },
  58. {
  59. path: '/outpatientCharges/treatPrint',
  60. component: () => import('@/xt_pages/outpatientCharges/treatPrint'),
  61. hidden: true,
  62. is_menu: false,
  63. name: 'outpatientChargesTreatPrint',
  64. meta: { title: 'outpatientChargesTreatPrint', noCache: true }
  65. },
  66. {
  67. path: '/outpatientCharges/print',
  68. component: () => import('@/xt_pages/outpatientCharges/print'),
  69. hidden: true,
  70. is_menu: false,
  71. name: 'outpatientChargesPrint',
  72. meta: { title: 'outpatientChargesPrint', noCache: true }
  73. },
  74. ]
  75. }