patient.js 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  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/vascularAccess',
  66. component: () => import('@/xt_pages/user/vascularAccess'),
  67. hidden: true,
  68. is_menu: false,
  69. name: 'vascularAccess',
  70. meta: {
  71. title: 'vascularAccess',
  72. noCache: true
  73. }
  74. },
  75. {
  76. path: '/patients/patient/:mid/vascularAccessDetail/:pid',
  77. component: () => import('@/xt_pages/user/vascularAccessDetail'),
  78. hidden: true,
  79. is_menu: false,
  80. name: 'vascularAccessDetail',
  81. meta: {
  82. title: 'vascularAccessDetail',
  83. noCache: true
  84. }
  85. },
  86. {
  87. path: '/patients/patient/:id/dialysisRecord',
  88. component: () => import('@/xt_pages/user/dialysisRecord'),
  89. hidden: true,
  90. is_menu: false,
  91. name: 'dialysisRecord',
  92. meta: {
  93. title: 'dialysisRecord',
  94. noCache: true
  95. }
  96. },
  97. {
  98. path: '/patients/patient/:id/scheduling',
  99. component: () => import('@/xt_pages/user/scheduling'),
  100. hidden: true,
  101. is_menu: false,
  102. name: 'scheduling',
  103. meta: {
  104. title: 'scheduling',
  105. noCache: true
  106. }
  107. },
  108. {
  109. path: '/patients/patient/:id/doctorAdvice',
  110. component: () => import('@/xt_pages/user/doctorAdvice'),
  111. hidden: true,
  112. is_menu: false,
  113. name: 'doctorAdvice',
  114. meta: {
  115. title: 'doctorAdvice',
  116. noCache: true
  117. }
  118. },
  119. {
  120. path: '/patients/patient/:id/dryWeight',
  121. component: () => import('@/xt_pages/user/dryWeight'),
  122. hidden: true,
  123. is_menu: false,
  124. name: 'dryWeight',
  125. meta: { title: 'dryWeight', noCache: true }
  126. },
  127. {
  128. path: '/patients/inspection',
  129. component: () => import('@/xt_pages/user/inspection'),
  130. hidden: true,
  131. is_menu: false,
  132. name: 'Inspection',
  133. meta: {
  134. title: 'inspection',
  135. noCache: true
  136. }
  137. },
  138. {
  139. path: '/patients/patients/:id/inspectionInfectious',
  140. component: () => import('@/xt_pages/user/inspectionInfectious'),
  141. hidden: true,
  142. is_menu: false,
  143. name: 'inspectionInfectious',
  144. meta: {
  145. title: 'inspectionInfectious',
  146. noCache: true
  147. }
  148. },
  149. {
  150. path: '/patient/patient/:id/templateSummary',
  151. component: () => import('@/xt_pages/user/templateSummary'),
  152. hidden: true,
  153. is_menu: false,
  154. name: 'templateSummary',
  155. meta: {
  156. title: 'templateSummary',
  157. noCache: true
  158. }
  159. },
  160. {
  161. path: '/patient/patient/:id/hospitalSummary',
  162. component: () => import('@/xt_pages/user/hospitalSummary'),
  163. hidden: true,
  164. is_menu: false,
  165. name: 'hospitalSummary',
  166. meta: {
  167. title: 'hospitalSummary',
  168. noCache: true
  169. }
  170. },
  171. {
  172. path: '/patients/course',
  173. component: () => import('@/xt_pages/user/courseOfDisease'),
  174. hidden: true,
  175. is_menu: false,
  176. name: 'CourseOfDiseaseManage',
  177. meta: {
  178. title: 'CourseOfDiseaseManage',
  179. noCache: true
  180. }
  181. },
  182. {
  183. path: '/patients/sickhistory',
  184. component: () => import('@/xt_pages/user/sickHistory'),
  185. hidden: true,
  186. is_menu: false,
  187. name: 'sickHistory',
  188. meta: { title: 'sickHistory', noCache: true }
  189. },
  190. {
  191. path: '/patients/inspection_check',
  192. component: () => import('@/xt_pages/user/inspectionCheck'),
  193. hidden: true,
  194. is_menu: false,
  195. name: 'inspectionCheck',
  196. meta: { title: 'inspectionCheck', noCache: true }
  197. },
  198. {
  199. path: '/patients/ktv',
  200. component: () => import('@/xt_pages/user/ktv'),
  201. hidden: true,
  202. is_menu: false,
  203. name: 'ktv',
  204. meta: { title: 'ktv', noCache: true }
  205. },
  206. {
  207. path: '/patients/physicalexamination',
  208. component: () => import('@/xt_pages/user/Physicalexamination'),
  209. hidden: true,
  210. is_menu: false,
  211. name: 'physicalexamination',
  212. meta: { title: 'physicalexamination', noCache: true }
  213. },
  214. {
  215. path: '/patients/rescue',
  216. component: () => import('@/xt_pages/user/rescueRecord'),
  217. hidden: true,
  218. is_menu: false,
  219. name: 'RescueRecord',
  220. meta: {
  221. title: 'RescueRecord',
  222. noCache: true
  223. }
  224. },
  225. {
  226. path: '/patients/patient/:id/proeducation',
  227. component: () => import('@/xt_pages/user/proeducation'),
  228. hidden: true,
  229. is_menu: false,
  230. name: 'proeducation',
  231. meta: {
  232. title: 'proeducation',
  233. noCache: true
  234. }
  235. },
  236. {
  237. path: '/course/print',//coursePrint
  238. component: () => import('@/xt_pages/user/coursePrint'),
  239. hidden: true,
  240. is_menu: false,
  241. name: 'coursePrint',
  242. meta: {
  243. title: 'coursePrint',
  244. noCache: true
  245. }
  246. },
  247. {
  248. path: '/sickhistory/print',
  249. component: () => import('@/xt_pages/user/physiqueprinting'),
  250. hidden: true,
  251. is_menu: false,
  252. name: 'physiquePrinting',
  253. meta: {
  254. title: 'physiquePrinting',
  255. noCache: true
  256. }
  257. },
  258. {
  259. path: '/physique/print',
  260. component: () => import('@/xt_pages/user/physiqueprintingtwo'),
  261. hidden: true,
  262. is_menu: false,
  263. name: 'physiqueprintingtwo',
  264. meta: {
  265. title: 'physiqueprintingtwo',
  266. noCache: true
  267. }
  268. },
  269. {
  270. path: '/patient/patient/templateSummary/print',
  271. component: () => import('@/xt_pages/user/templateSummaryPrint'),
  272. hidden: true,
  273. is_menu: false,
  274. name: 'templateSummary',
  275. meta: {
  276. title: 'templateSummary',
  277. noCache: true
  278. }
  279. },
  280. // {
  281. // path: '/patient/patient/templateSummary/print_1',
  282. // component: () => import('@/xt_pages/user/templateSummaryPrint_1'),
  283. // hidden: true,
  284. // is_menu: false,
  285. // name: 'templateSummary_1',
  286. // meta: {
  287. // title: 'templateSummary_1',
  288. // noCache: true
  289. // }
  290. // },
  291. {
  292. path: '/patient/patient/hospitalSummary/print',
  293. component: () => import('@/xt_pages/user/hospitalSummaryPrint'),
  294. hidden: true,
  295. is_menu: false,
  296. name: 'templateSummary',
  297. meta: {
  298. title: 'templateSummary',
  299. noCache: true
  300. }
  301. },
  302. {
  303. path: '/patient/patient/:id/firstDisease',
  304. component: () => import('@/xt_pages/user/firstDisease'),
  305. hidden: true,
  306. is_menu: false,
  307. name: 'firstDisease',
  308. meta: {
  309. title: 'firstDisease',
  310. noCache: true
  311. }
  312. },
  313. {
  314. path: '/patient/patient/firstDisease/print',
  315. component: () => import('@/xt_pages/user/firstDiseasePrint'),
  316. hidden: true,
  317. is_menu: false,
  318. name: 'firstDiseasePrint',
  319. meta: {
  320. title: 'firstDiseasePrint',
  321. noCache: true
  322. }
  323. },
  324. {//评估工具/跌倒评估
  325. path: '/patients/patient/:id/Fallassessment',
  326. component: () => import('@/xt_pages/user/evaluationtool/Fallassessment'),
  327. hidden: true,
  328. is_menu: false,
  329. name: 'Fallassessment',
  330. meta: {
  331. title: 'firstDiseasePrint',
  332. noCache: true
  333. }
  334. },
  335. {//小儿跌倒风险评估
  336. path: '/patients/patient/:id/pediatricFallAssessment',
  337. component: () => import('@/xt_pages/user/evaluationtool/pediatricFallAssessment'),
  338. hidden: true,
  339. is_menu: false,
  340. name: 'pediatricFallAssessment',
  341. meta: {
  342. title: 'pediatricFallAssessment',
  343. noCache: true
  344. }
  345. },
  346. {//压疮风险评估
  347. path: '/patients/patient/:id/pressuresore',
  348. component: () => import('@/xt_pages/user/evaluationtool/pressuresore'),
  349. hidden: true,
  350. is_menu: false,
  351. name: 'pressuresore',
  352. meta: {
  353. title: 'pressuresore',
  354. noCache: true
  355. }
  356. },
  357. {//oh压疮评估
  358. path: '/patients/patient/:id/OHpressuresore',
  359. component: () => import('@/xt_pages/user/evaluationtool/OHpressuresore'),
  360. hidden: true,
  361. is_menu: false,
  362. name: 'OHpressuresore',
  363. meta: {
  364. title: 'OHpressuresore',
  365. noCache: true
  366. }
  367. },
  368. {//日常生活能力评估
  369. path: '/patients/patient/:id/dailyLife',
  370. component: () => import('@/xt_pages/user/evaluationtool/dailyLife'),
  371. hidden: true,
  372. is_menu: false,
  373. name: 'dailyLife',
  374. meta: {
  375. title: 'dailyLife',
  376. noCache: true
  377. }
  378. },
  379. {//导管脱落风险评估
  380. path: '/patients/patient/:id/Cathetershedding',
  381. component: () => import('@/xt_pages/user/evaluationtool/Cathetershedding'),
  382. hidden: true,
  383. is_menu: false,
  384. name: 'Cathetershedding',
  385. meta: {
  386. title: 'Cathetershedding',
  387. noCache: true
  388. }
  389. },
  390. {//RASS及疼痛评估
  391. path: '/patients/patient/:id/RassAssessment',
  392. component: () => import('@/xt_pages/user/evaluationtool/RassAssessment'),
  393. hidden: true,
  394. is_menu: false,
  395. name: 'RassAssessment',
  396. meta: {
  397. title: 'RassAssessment',
  398. noCache: true
  399. }
  400. },
  401. {//营养状况评估
  402. path: '/patients/patient/:id/nourishmentAssessment',
  403. component: () => import('@/xt_pages/user/evaluationtool/nourishmentAssessment'),
  404. hidden: true,
  405. is_menu: false,
  406. name: 'nourishmentAssessment',
  407. meta: {
  408. title: 'nourishmentAssessment',
  409. noCache: true
  410. }
  411. },
  412. {//约束告知单
  413. path: '/patients/patient/:id/Constraintnotification',
  414. component: () => import('@/xt_pages/user/evaluationtool/Constraintnotification'),
  415. hidden: true,
  416. is_menu: false,
  417. name: 'Constraintnotification',
  418. meta: {
  419. title: 'Constraintnotification',
  420. noCache: true
  421. }
  422. },
  423. {//心理评估
  424. path: '/patients/patient/:id/mindAssessment',
  425. component: () => import('@/xt_pages/user/evaluationtool/mindAssessment'),
  426. hidden: true,
  427. is_menu: false,
  428. name: 'mindAssessment',
  429. meta: {
  430. title: 'mindAssessment',
  431. noCache: true
  432. }
  433. },
  434. {//瘙痒评估
  435. path: '/patients/patient/:id/pruritusAssessment',
  436. component: () => import('@/xt_pages/user/evaluationtool/pruritusAssessment'),
  437. hidden: true,
  438. is_menu: false,
  439. name: 'pruritusAssessment',
  440. meta: {
  441. title: 'pruritusAssessment',
  442. noCache: true
  443. }
  444. },
  445. {//血液透析患者评估
  446. path: '/patients/patient/:id/hemodialysis',
  447. component: () => import('@/xt_pages/user/evaluationtool/hemodialysis'),
  448. hidden: true,
  449. is_menu: false,
  450. name: 'hemodialysis',
  451. meta: {
  452. title: 'hemodialysis',
  453. noCache: true
  454. }
  455. },
  456. {//Glasgow昏迷评分量表
  457. path: '/patients/patient/:id/Glasgow',
  458. component: () => import('@/xt_pages/user/evaluationtool/Glasgow'),
  459. hidden: true,
  460. is_menu: false,
  461. name: 'Glasgow',
  462. meta: {
  463. title: 'Glasgow',
  464. noCache: true
  465. }
  466. },
  467. {//肌力评估表
  468. path: '/patients/patient/:id/Muscleforce',
  469. component: () => import('@/xt_pages/user/evaluationtool/Muscleforce'),
  470. hidden: true,
  471. is_menu: false,
  472. name: 'Muscleforce',
  473. meta: {
  474. title: 'Muscleforce',
  475. noCache: true
  476. }
  477. },
  478. ]
  479. }