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

hospitalRecord.js 706B

1234567891011121314151617181920212223242526272829
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/hospitalRecord',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'hospitalRecord',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'hospitalRecord',
  10. icon: 'hospitalRecord',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/hospitalRecord/index',
  16. component: () => import('@/xt_pages/hospitalStation/index'),
  17. name: 'hospitalIndex',
  18. meta: { title: 'hospitalIndex', noCache: true }
  19. }, {
  20. path: '/hospitalRecord/history',
  21. component: () => import('@/xt_pages/hospitalStation/inHospitalHistory'),
  22. name: 'hospitalhistory',
  23. meta: { title: 'hospitalhistory', noCache: true }
  24. },
  25. ]
  26. }