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

outpatientCharges.js 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }