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

hisTool.js 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/hisTool',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'hisTool',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'hisTool',
  10. icon: 'hisTool',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/hisTool/prescriptionTemplate',
  16. component: () => import('@/xt_pages/outpatientDoctorStation/prescriptionTemplate'),
  17. name: 'prescriptionTemplate',
  18. meta: { title: 'prescriptionTemplate', noCache: true }
  19. }, {
  20. path: '/hisTool/prescriptionTemplatedetail',
  21. component: () => import('@/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail'),
  22. name: 'prescriptionTemplatedetail',
  23. hidden: true,
  24. is_menu: false,
  25. meta: { title: 'prescriptionTemplatedetail', noCache: true }
  26. }, {
  27. path: '/hisTool/costComparison',
  28. component: () => import('@/xt_pages/outpatientCharges/costComparison'),
  29. name: 'costComparison',
  30. meta: { title: 'costComparison', noCache: true }
  31. }, {
  32. path: '/hisTool/outpatientRecord',
  33. component: () => import('@/xt_pages/outpatientRecord/outpatientRecord'),
  34. name: 'outpatientSickRecord',
  35. meta: { title: 'outpatientSickRecord', noCache: true }
  36. },{
  37. path: '/hisTool/summary',
  38. component: () => import('@/xt_pages/outpatientTool/summary'),
  39. name: 'outpatientSickRecord',
  40. meta: { title: 'summary_tool', noCache: true }
  41. },
  42. ]
  43. }