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

Dialysisanalysis.js 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/Dialysisanalysis',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'Dialysisanalysis',
  7. alwaysShow: true,
  8. meta: {
  9. title: '透析分析',
  10. icon: 'statistics'
  11. },
  12. children: [
  13. {
  14. path: '/Dialysisanalysis/qualitycontrol/thyroidGland',
  15. component: () => import('@/xt_pages/Dialysisanalysis/qualitycontrol/thyroidGland'),
  16. name: 'thyroidGland',
  17. meta: {
  18. title: '甲状旁腺激素分析',
  19. noCache: true
  20. }
  21. },
  22. {
  23. path: '/Dialysisanalysis/hemoglobin',
  24. component: () => import('@/xt_pages/Dialysisanalysis/hemoglobin/index'),
  25. name: 'index',
  26. meta: {
  27. title: '血红蛋白',
  28. noCache: true
  29. }
  30. },
  31. {
  32. path: '/Dialysisanalysis/bloodPotassium',
  33. component: () => import('@/xt_pages/Dialysisanalysis/bloodPotassium/index'),
  34. name: 'index',
  35. meta: {
  36. title: '血钾',
  37. noCache: true
  38. }
  39. },
  40. {
  41. path: '/Dialysisanalysis/albumin',
  42. component: () => import('@/xt_pages/Dialysisanalysis/albumin/index'),
  43. name: 'index',
  44. meta: {
  45. title: '白蛋白',
  46. noCache: true
  47. }
  48. },
  49. {
  50. path: '/Dialysisanalysis/bloodPhosphorus',
  51. component: () => import('@/xt_pages/Dialysisanalysis/bloodPhosphorus/index'),
  52. name: 'index',
  53. meta: {
  54. title: '血磷',
  55. noCache: true
  56. }
  57. },
  58. {
  59. path: '/Dialysisanalysis/calcium',
  60. component: () => import('@/xt_pages/Dialysisanalysis/calcium/index'),
  61. name: 'index',
  62. meta: {
  63. title: '钙',
  64. noCache: true
  65. }
  66. },
  67. {
  68. path: '/Dialysisanalysis/platelets',
  69. component: () => import('@/xt_pages/Dialysisanalysis/platelets/index'),
  70. name: 'index',
  71. meta: {
  72. title: '血小板',
  73. noCache: true
  74. }
  75. },
  76. {
  77. path: '/Dialysisanalysis/otherIndicators',
  78. component: () => import('@/xt_pages/Dialysisanalysis/otherIndicators/index'),
  79. name: 'index',
  80. meta: {
  81. title: '其他指标',
  82. noCache: true
  83. }
  84. },
  85. {
  86. path: '/Dialysisanalysis/nonnumerical',
  87. component: () => import('@/xt_pages/Dialysisanalysis/nonnumerical'),
  88. name: 'nonnumerical',
  89. meta: {
  90. title: '非数值类的列表展示',
  91. noCache: true
  92. }
  93. },
  94. {
  95. path: '/Dialysisanalysis/dialysis_index',
  96. component: () => import('@/xt_pages/Dialysisanalysis/dialysis_index'),
  97. name: 'dialysis_index',
  98. meta: {
  99. title: '透析指标详情',
  100. noCache: true
  101. }
  102. },
  103. ]
  104. }