血透系统PC前端

patient.js 3.6KB

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