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

patient.js 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/patients',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'User',
  7. meta: {
  8. title: 'user',
  9. icon: 'bingren'
  10. },
  11. children: [{
  12. path: '/patients/patients',
  13. component: () => import('@/xt_pages/user/patients'),
  14. name: 'Patient',
  15. meta: {
  16. title: 'patient',
  17. noCache: true
  18. }
  19. },
  20. {
  21. path: '/patients/patient/:id',
  22. component: () => import('@/xt_pages/user/patientInfo'),
  23. hidden: true,
  24. is_menu: false,
  25. name: 'patient Page',
  26. meta: {
  27. title: 'patientPage',
  28. noCache: true
  29. }
  30. },
  31. {
  32. path: '/patients/patient/:id/edit',
  33. component: () => import('@/xt_pages/user/editPatient'),
  34. hidden: true,
  35. is_menu: false,
  36. name: 'Edit Patient',
  37. meta: {
  38. title: 'editPatient',
  39. noCache: true
  40. }
  41. },
  42. {
  43. path: '/patients/patient/:id/dialysisSolution',
  44. component: () => import('@/xt_pages/user/dialysisSolution'),
  45. hidden: true,
  46. is_menu: false,
  47. name: 'dialysisSolution',
  48. meta: {
  49. title: 'dialysisSolution',
  50. noCache: true
  51. }
  52. },
  53. {
  54. path: '/patients/patient/:id/weight',
  55. component: () => import('@/xt_pages/user/weight'),
  56. hidden: true,
  57. is_menu: false,
  58. name: 'weight',
  59. meta: {
  60. title: 'weight',
  61. noCache: true
  62. }
  63. },
  64. {
  65. path: '/patients/patient/:id/dialysisRecord',
  66. component: () => import('@/xt_pages/user/dialysisRecord'),
  67. hidden: true,
  68. is_menu: false,
  69. name: 'dialysisRecord',
  70. meta: {
  71. title: 'dialysisRecord',
  72. noCache: true
  73. }
  74. },
  75. {
  76. path: '/patients/patient/:id/scheduling',
  77. component: () => import('@/xt_pages/user/scheduling'),
  78. hidden: true,
  79. is_menu: false,
  80. name: 'scheduling',
  81. meta: {
  82. title: 'scheduling',
  83. noCache: true
  84. }
  85. },
  86. {
  87. path: '/patients/patient/:id/doctorAdvice',
  88. component: () => import('@/xt_pages/user/doctorAdvice'),
  89. hidden: true,
  90. is_menu: false,
  91. name: 'doctorAdvice',
  92. meta: {
  93. title: 'doctorAdvice',
  94. noCache: true
  95. }
  96. },
  97. {
  98. path: '/patients/patient/:id/dryWeight',
  99. component: () => import('@/xt_pages/user/dryWeight'),
  100. hidden: true,
  101. is_menu: false,
  102. name: 'dryWeight',
  103. meta: { title: 'dryWeight', noCache: true }
  104. },
  105. {
  106. path: '/patients/inspection',
  107. component: () => import('@/xt_pages/user/inspection'),
  108. hidden: true,
  109. is_menu: false,
  110. name: 'Inspection',
  111. meta: {
  112. title: 'inspection',
  113. noCache: true
  114. }
  115. },
  116. {
  117. path: '/patients/course',
  118. component: () => import('@/xt_pages/user/courseOfDisease'),
  119. hidden: true,
  120. is_menu: false,
  121. name: 'CourseOfDiseaseManage',
  122. meta: {
  123. title: 'CourseOfDiseaseManage',
  124. noCache: true
  125. }
  126. },
  127. {
  128. path: '/patients/rescue',
  129. component: () => import('@/xt_pages/user/rescueRecord'),
  130. hidden: true,
  131. is_menu: false,
  132. name: 'RescueRecord',
  133. meta: {
  134. title: 'RescueRecord',
  135. noCache: true
  136. }
  137. },
  138. {
  139. path: '/patients/patient/:id/proeducation',
  140. component: () => import('@/xt_pages/user/proeducation'),
  141. hidden: true,
  142. is_menu: false,
  143. name: 'proeducation',
  144. meta: {
  145. title: 'proeducation',
  146. noCache: true
  147. }
  148. }, {
  149. path: '/course/print',
  150. component: () => import('@/xt_pages/user/coursePrint'),
  151. hidden: true,
  152. is_menu: false,
  153. name: 'coursePrint',
  154. meta: {
  155. title: 'coursePrint',
  156. noCache: true
  157. }
  158. }
  159. ]
  160. }