patient.js 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  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. // {
  326. // path: '/patients/patient/:id/Fallassessment',
  327. // component: () => import('@/xt_pages/user/evaluationtool/Fallassessment'),
  328. // hidden: true,
  329. // is_menu: false,
  330. // name: 'Fallassessment',
  331. // meta: {
  332. // title: 'firstDiseasePrint',
  333. // noCache: true
  334. // }
  335. // },
  336. // {//小儿跌倒风险评估
  337. // path: '/patients/patient/:id/pediatricFallAssessment',
  338. // component: () => import('@/xt_pages/user/evaluationtool/pediatricFallAssessment'),
  339. // hidden: true,
  340. // is_menu: false,
  341. // name: 'pediatricFallAssessment',
  342. // meta: {
  343. // title: 'pediatricFallAssessment',
  344. // noCache: true
  345. // }
  346. // },
  347. // {//压疮风险评估
  348. // path: '/patients/patient/:id/pressuresore',
  349. // component: () => import('@/xt_pages/user/evaluationtool/pressuresore'),
  350. // hidden: true,
  351. // is_menu: false,
  352. // name: 'pressuresore',
  353. // meta: {
  354. // title: 'pressuresore',
  355. // noCache: true
  356. // }
  357. // },
  358. // {//oh压疮评估
  359. // path: '/patients/patient/:id/OHpressuresore',
  360. // component: () => import('@/xt_pages/user/evaluationtool/OHpressuresore'),
  361. // hidden: true,
  362. // is_menu: false,
  363. // name: 'OHpressuresore',
  364. // meta: {
  365. // title: 'OHpressuresore',
  366. // noCache: true
  367. // }
  368. // },
  369. // {//日常生活能力评估
  370. // path: '/patients/patient/:id/dailyLife',
  371. // component: () => import('@/xt_pages/user/evaluationtool/dailyLife'),
  372. // hidden: true,
  373. // is_menu: false,
  374. // name: 'dailyLife',
  375. // meta: {
  376. // title: 'dailyLife',
  377. // noCache: true
  378. // }
  379. // },
  380. // {//导管脱落风险评估
  381. // path: '/patients/patient/:id/Cathetershedding',
  382. // component: () => import('@/xt_pages/user/evaluationtool/Cathetershedding'),
  383. // hidden: true,
  384. // is_menu: false,
  385. // name: 'Cathetershedding',
  386. // meta: {
  387. // title: 'Cathetershedding',
  388. // noCache: true
  389. // }
  390. // },
  391. // {//RASS及疼痛评估
  392. // path: '/patients/patient/:id/RassAssessment',
  393. // component: () => import('@/xt_pages/user/evaluationtool/RassAssessment'),
  394. // hidden: true,
  395. // is_menu: false,
  396. // name: 'RassAssessment',
  397. // meta: {
  398. // title: 'RassAssessment',
  399. // noCache: true
  400. // }
  401. // },
  402. // {//营养状况评估
  403. // path: '/patients/patient/:id/nourishmentAssessment',
  404. // component: () => import('@/xt_pages/user/evaluationtool/nourishmentAssessment'),
  405. // hidden: true,
  406. // is_menu: false,
  407. // name: 'nourishmentAssessment',
  408. // meta: {
  409. // title: 'nourishmentAssessment',
  410. // noCache: true
  411. // }
  412. // },
  413. // {//约束告知单
  414. // path: '/patients/patient/:id/Constraintnotification',
  415. // component: () => import('@/xt_pages/user/evaluationtool/Constraintnotification'),
  416. // hidden: true,
  417. // is_menu: false,
  418. // name: 'Constraintnotification',
  419. // meta: {
  420. // title: 'Constraintnotification',
  421. // noCache: true
  422. // }
  423. // },
  424. // {//心理评估
  425. // path: '/patients/patient/:id/mindAssessment',
  426. // component: () => import('@/xt_pages/user/evaluationtool/mindAssessment'),
  427. // hidden: true,
  428. // is_menu: false,
  429. // name: 'mindAssessment',
  430. // meta: {
  431. // title: 'mindAssessment',
  432. // noCache: true
  433. // }
  434. // },
  435. // {//瘙痒评估
  436. // path: '/patients/patient/:id/pruritusAssessment',
  437. // component: () => import('@/xt_pages/user/evaluationtool/pruritusAssessment'),
  438. // hidden: true,
  439. // is_menu: false,
  440. // name: 'pruritusAssessment',
  441. // meta: {
  442. // title: 'pruritusAssessment',
  443. // noCache: true
  444. // }
  445. // },
  446. // {//血液透析患者评估
  447. // path: '/patients/patient/:id/hemodialysis',
  448. // component: () => import('@/xt_pages/user/evaluationtool/hemodialysis'),
  449. // hidden: true,
  450. // is_menu: false,
  451. // name: 'hemodialysis',
  452. // meta: {
  453. // title: 'hemodialysis',
  454. // noCache: true
  455. // }
  456. // },
  457. // {//Glasgow昏迷评分量表
  458. // path: '/patients/patient/:id/Glasgow',
  459. // component: () => import('@/xt_pages/user/evaluationtool/Glasgow'),
  460. // hidden: true,
  461. // is_menu: false,
  462. // name: 'Glasgow',
  463. // meta: {
  464. // title: 'Glasgow',
  465. // noCache: true
  466. // }
  467. // },
  468. // {//肌力评估表
  469. // path: '/patients/patient/:id/Muscleforce',
  470. // component: () => import('@/xt_pages/user/evaluationtool/Muscleforce'),
  471. // hidden: true,
  472. // is_menu: false,
  473. // name: 'Muscleforce',
  474. // meta: {
  475. // title: 'Muscleforce',
  476. // noCache: true
  477. // }
  478. // },
  479. // {//跌倒评估历史评估
  480. // path: '/patients/tumble_history',
  481. // component: () => import('@/xt_pages/user/history/tumble_history'),
  482. // hidden: true,
  483. // is_menu: false,
  484. // name: 'tunele_history',
  485. // meta: {
  486. // title: 'tunele_history',
  487. // noCache: true
  488. // }
  489. // },
  490. // {//小儿跌倒评估历史评估
  491. // path: '/patients/Children_history',
  492. // component: () => import('@/xt_pages/user/history/Children_history'),
  493. // hidden: true,
  494. // is_menu: false,
  495. // name: 'Children_history',
  496. // meta: {
  497. // title: 'Children_history',
  498. // noCache: true
  499. // }
  500. // },
  501. // {//压疮历史评估
  502. // path: '/patients/Pressure_history',
  503. // component: () => import('@/xt_pages/user/history/Pressure_history'),
  504. // hidden: true,
  505. // is_menu: false,
  506. // name: 'Pressure_history',
  507. // meta: {
  508. // title: 'Pressure_history',
  509. // noCache: true
  510. // }
  511. // },
  512. // {//日常历史评估
  513. // path: '/patients/date_history',
  514. // component: () => import('@/xt_pages/user/history/date_history'),
  515. // hidden: true,
  516. // is_menu: false,
  517. // name: 'date_history',
  518. // meta: {
  519. // title: 'date_history',
  520. // noCache: true
  521. // }
  522. // },
  523. // {//导管脱落历史评估
  524. // path: '/patients/daoguan_history',
  525. // component: () => import('@/xt_pages/user/history/daoguan_history'),
  526. // hidden: true,
  527. // is_menu: false,
  528. // name: 'daoguan_history',
  529. // meta: {
  530. // title: 'daoguan_history',
  531. // noCache: true
  532. // }
  533. // },
  534. // {//RASS历史评估
  535. // path: '/patients/RASS_history',
  536. // component: () => import('@/xt_pages/user/history/RASS_history'),
  537. // hidden: true,
  538. // is_menu: false,
  539. // name: 'RASS_history',
  540. // meta: {
  541. // title: 'RASS_history',
  542. // noCache: true
  543. // }
  544. // },
  545. // {//营养历史评估
  546. // path: '/patients/nourishment_history',
  547. // component: () => import('@/xt_pages/user/history/nourishment_history'),
  548. // hidden: true,
  549. // is_menu: false,
  550. // name: 'nourishment_history',
  551. // meta: {
  552. // title: 'nourishment_history',
  553. // noCache: true
  554. // }
  555. // },
  556. // {//心理历史评估
  557. // path: '/patients/mind_history',
  558. // component: () => import('@/xt_pages/user/history/mind_history'),
  559. // hidden: true,
  560. // is_menu: false,
  561. // name: 'mind_history',
  562. // meta: {
  563. // title: 'mind_history',
  564. // noCache: true
  565. // }
  566. // },
  567. // {//瘙痒历史评估
  568. // path: '/patients/pruritus_history',
  569. // component: () => import('@/xt_pages/user/history/pruritus_history'),
  570. // hidden: true,
  571. // is_menu: false,
  572. // name: 'pruritus_history',
  573. // meta: {
  574. // title: 'pruritus_history',
  575. // noCache: true
  576. // }
  577. // },
  578. // {//知情同意书
  579. // path: '/patients/patient/:id/Informedconsent',
  580. // component: () => import('@/xt_pages/user/Informed/Informedconsent'),
  581. // hidden: true,
  582. // is_menu: false,
  583. // name: 'Informedconsent',
  584. // meta: {
  585. // title: 'Informedconsent',
  586. // noCache: true
  587. // }
  588. // },
  589. // {//血管通路图 pruritus_history
  590. // path: '/patients/patient/:id/angiogram',
  591. // component: () => import('@/xt_pages/user/angiogram'),
  592. // hidden: true,
  593. // is_menu: false,
  594. // name: 'angiogram',
  595. // meta: {
  596. // title: 'angiogram',
  597. // noCache: true
  598. // }
  599. // },
  600. ]
  601. }