dialysis.js 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/dialysis/',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'dialysis',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'dialysis',
  10. icon: 'touxi'
  11. },
  12. children: [
  13. // {
  14. // path: '/dialysis/home',
  15. // component: () => import('@/xt_pages/home/index'),
  16. // name: 'home',
  17. // meta: {
  18. // title: 'home',
  19. // noCache: true
  20. // }
  21. // },
  22. {
  23. path: '/dialysis/watch',
  24. component: () => import('@/xt_pages/dialysis/bloodPresssWatch'),
  25. name: 'watch',
  26. meta: {
  27. title: 'watch',
  28. noCache: true
  29. }
  30. },
  31. // {
  32. // path: '/dialysis/board',
  33. // component: () => import('@/xt_pages/dialysis/bulletinBoard'),
  34. // name: '数据看板',
  35. // meta: {
  36. // title: '数据看板',
  37. // noCache: true
  38. // }
  39. // },
  40. {
  41. path: '/dialysis/dialysisDoctorAdvice',
  42. component: () => import('@/xt_pages/dialysis/dialysisDoctorAdvice'),
  43. name: '透析医嘱',
  44. meta: {
  45. title: '透析医嘱',
  46. noCache: true
  47. }
  48. },
  49. {
  50. path: '/dialysis/doctorAdvicePrint',
  51. component: () => import('@/xt_pages/dialysis/doctorAdvicePrint'),
  52. name: '透析医嘱打印',
  53. hidden: true,
  54. is_menu: false,
  55. meta: {
  56. title: '透析医嘱打印',
  57. noCache: true
  58. }
  59. },
  60. {
  61. path: '/dialysis/signPrint',
  62. component: () => import('@/xt_pages/dialysis/signPrint'),
  63. name: '标签打印',
  64. hidden: true,
  65. is_menu: false,
  66. meta: {
  67. title: '标签打印',
  68. noCache: true
  69. }
  70. },
  71. {
  72. path: '/dialysis/consumableDrugs',
  73. component: () => import('@/xt_pages/dialysis/consumableDrugs'),
  74. name: '耗材药品',
  75. meta: {
  76. title: '耗材药品',
  77. noCache: true
  78. }
  79. },
  80. {
  81. path: '/dialysis/consumableDrugs_print',
  82. component: () => import('@/xt_pages/dialysis/consumableDrugs_print'),
  83. hidden: true,
  84. is_menu: false,
  85. name: 'consumableDrugs_print',
  86. meta: {
  87. title: 'consumableDrugs_print',
  88. noCache: true
  89. }
  90. },
  91. {
  92. path: '/dialysis/dialysisDrugs_print',
  93. component: () => import('@/xt_pages/dialysis/dialysisDrugs_print'),
  94. hidden: true,
  95. is_menu: false,
  96. name: 'dialysisDrugs_print',
  97. meta: {
  98. title: 'dialysisDrugs_print',
  99. noCache: true
  100. }
  101. },
  102. {
  103. path: '/dialysis/dialysisParameters_print',
  104. component: () => import('@/xt_pages/dialysis/dialysisParameters_print'),
  105. hidden: true,
  106. is_menu: false,
  107. name: 'dialysisParameters_print',
  108. meta: {
  109. title: 'dialysisParameters_print',
  110. noCache: true
  111. }
  112. },
  113. {
  114. path: '/dialysis/allSummary_print',
  115. component: () => import('@/xt_pages/dialysis/allSummary_print'),
  116. hidden: true,
  117. is_menu: false,
  118. name: 'allSummary_print',
  119. meta: {
  120. title: 'allSummary_print',
  121. noCache: true
  122. }
  123. },
  124. {
  125. path: '/dialysis/record/:id',
  126. component: () => import('@/xt_pages/dialysis/dialysisPage'),
  127. hidden: true,
  128. is_menu: false,
  129. name: 'paper',
  130. meta: {
  131. title: 'paper',
  132. noCache: true
  133. }
  134. },
  135. {
  136. path: '/dialysis/print',
  137. component: () => import('@/xt_pages/dialysis/dialysisPrintOrder'),
  138. hidden: true,
  139. is_menu: false,
  140. name: 'dialysisPrintOrder',
  141. meta: {
  142. title: 'dialysisPrintOrder',
  143. noCache: true
  144. }
  145. },
  146. // { path: 'advice', component: () => import('@/xt_pages/dialysis/doctorAdvice'), name: 'advice', meta: { title: 'advice' }},
  147. // { path: 'prepare', component: () => import('@/xt_pages/dialysis/dialysisPrepare'), name: 'prepare', meta: { title: 'prepare' }},
  148. {
  149. path: '/dialysis/details',
  150. component: () => import('@/xt_pages/dialysis/details'),
  151. name: 'details',
  152. meta: {
  153. title: 'details'
  154. },
  155. hidden: true,
  156. is_menu: false,
  157. noCache: true
  158. },
  159. {
  160. path: '/dialysis/print/batch',
  161. component: () =>
  162. import('@/xt_pages/dialysis/batch_print/batch_print_order'),
  163. hidden: true,
  164. is_menu: false,
  165. name: 'dialysis_batch_print',
  166. meta: {
  167. title: '批量打印',
  168. noCache: true
  169. }
  170. },
  171. {
  172. path: '/dialysis/print/batch/other',
  173. component: () =>
  174. import('@/xt_pages/dialysis/batch_print/batch_print_order_other'),
  175. hidden: true,
  176. is_menu: false,
  177. name: 'dialysis_batch_print_two',
  178. meta: {
  179. title: '批量打印',
  180. noCache: true
  181. }
  182. },
  183. {
  184. path: '/dialysis/print/batch/three',
  185. component: () =>
  186. import('@/xt_pages/dialysis/batch_print/batch_print_order_three'),
  187. hidden: true,
  188. is_menu: false,
  189. name: 'dialysis_batch_print_two_one',
  190. meta: {
  191. title: '批量打印',
  192. noCache: true
  193. }
  194. },
  195. {
  196. path: '/dialysis/print/batch/four',
  197. component: () =>
  198. import('@/xt_pages/dialysis/batch_print/batch_print_order_four'),
  199. hidden: true,
  200. is_menu: false,
  201. name: 'dialysis_batch_print_two_one',
  202. meta: {
  203. title: '批量打印',
  204. noCache: true
  205. }
  206. },
  207. {
  208. path: '/dialysis/print/batch/five',
  209. component: () =>
  210. import('@/xt_pages/dialysis/batch_print/batch_print_order_five'),
  211. hidden: true,
  212. is_menu: false,
  213. name: 'dialysis_batch_print_two_one',
  214. meta: {
  215. title: '批量打印',
  216. noCache: true
  217. }
  218. },
  219. {
  220. path: '/dialysis/print/batch/six',
  221. component: () =>
  222. import('@/xt_pages/dialysis/batch_print/batch_print_order_six'),
  223. hidden: true,
  224. is_menu: false,
  225. name: 'dialysis_batch_six',
  226. meta: {
  227. title: '批量打印',
  228. noCache: true
  229. }
  230. },
  231. {
  232. path: '/dialysis/print/batch/seven',
  233. component: () =>
  234. import('@/xt_pages/dialysis/batch_print/batch_print_order_seven'),
  235. hidden: true,
  236. is_menu: false,
  237. name: 'dialysis_batch_seven',
  238. meta: {
  239. title: '批量打印',
  240. noCache: true
  241. }
  242. },
  243. {
  244. path: '/dialysis/print/batch/eight',
  245. component: () =>
  246. import('@/xt_pages/dialysis/batch_print/batch_print_order_eight'),
  247. hidden: true,
  248. is_menu: false,
  249. name: 'dialysis_batch_eight',
  250. meta: {
  251. title: '批量打印',
  252. noCache: true
  253. }
  254. },
  255. {
  256. path: '/dialysis/print/batch/nine',
  257. component: () =>
  258. import('@/xt_pages/dialysis/batch_print/batch_print_order_nine'),
  259. hidden: true,
  260. is_menu: false,
  261. name: 'dialysis_batch_nine',
  262. meta: {
  263. title: '批量打印',
  264. noCache: true
  265. }
  266. },
  267. {
  268. path: '/dialysis/print/batch/twelve',
  269. component: () =>
  270. import('@/xt_pages/dialysis/batch_print/batch_print_order_twelve'),
  271. hidden: true,
  272. is_menu: false,
  273. name: 'dialysis_batch_twelve',
  274. meta: {
  275. title: '批量打印',
  276. noCache: true
  277. }
  278. },
  279. {
  280. path: '/dialysis/print/batch/thirteen',
  281. component: () =>
  282. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirteen'),
  283. hidden: true,
  284. is_menu: false,
  285. name: 'dialysis_batch_thirteen',
  286. meta: {
  287. title: '批量打印',
  288. noCache: true
  289. }
  290. },
  291. {
  292. path: '/dialysis/print/batch/fifteen',
  293. component: () =>
  294. import('@/xt_pages/dialysis/batch_print/batch_print_order_fifteen'),
  295. hidden: true,
  296. is_menu: false,
  297. name: 'dialysis_batch_fifteen',
  298. meta: {
  299. title: '批量打印',
  300. noCache: true
  301. }
  302. },
  303. {
  304. path: '/dialysis/print/batch/seventeen',
  305. component: () =>
  306. import('@/xt_pages/dialysis/batch_print/batch_print_order_seventeen'),
  307. hidden: true,
  308. is_menu: false,
  309. name: 'dialysis_batch_seventeen',
  310. meta: {
  311. title: '批量打印',
  312. noCache: true
  313. }
  314. },
  315. {
  316. path: '/dialysis/print/batch/twenty',
  317. component: () =>
  318. import('@/xt_pages/dialysis/batch_print/batch_print_order_twenty'),
  319. hidden: true,
  320. is_menu: false,
  321. name: 'dialysis_batch_twenty',
  322. meta: {
  323. title: '批量打印',
  324. noCache: true
  325. }
  326. },
  327. {
  328. path: '/dialysis/print/batch/twentyTwo',
  329. component: () =>
  330. import('@/xt_pages/dialysis/batch_print/batch_print_order_twentyTwo'),
  331. hidden: true,
  332. is_menu: false,
  333. name: 'dialysis_batch_twentyTwo',
  334. meta: {
  335. title: '批量打印',
  336. noCache: true
  337. }
  338. },
  339. {
  340. path: '/dialysis/print/batch/twentyFive',
  341. component: () =>
  342. import('@/xt_pages/dialysis/batch_print/batch_print_order_twentyFive'),
  343. hidden: true,
  344. is_menu: false,
  345. name: 'dialysis_batch_twentyFive',
  346. meta: {
  347. title: '批量打印',
  348. noCache: true
  349. }
  350. },
  351. {
  352. path: '/dialysis/print/batch/twentyEight',
  353. component: () =>
  354. import('@/xt_pages/dialysis/batch_print/batch_print_order_twentyEight'),
  355. hidden: true,
  356. is_menu: false,
  357. name: 'dialysis_batch_twentyFive',
  358. meta: {
  359. title: '批量打印',
  360. noCache: true
  361. }
  362. },
  363. {
  364. path: '/dialysis/print/batch/thirty',
  365. component: () =>
  366. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirty'),
  367. hidden: true,
  368. is_menu: false,
  369. name: 'dialysis_batch_thirty',
  370. meta: {
  371. title: '批量打印',
  372. noCache: true
  373. }
  374. },
  375. {
  376. path: '/dialysis/print/batch/thirtyTwo',
  377. component: () =>
  378. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirtyTwo'),
  379. hidden: true,
  380. is_menu: false,
  381. name: 'batch_print_order_thirtyTwo',
  382. meta: {
  383. title: '批量打印',
  384. noCache: true
  385. }
  386. },
  387. {
  388. path: '/dialysis/print/batch/thirtyThree',
  389. component: () =>
  390. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirtyThree'),
  391. hidden: true,
  392. is_menu: false,
  393. name: 'batch_print_order_thirtyThree',
  394. meta: {
  395. title: '批量打印',
  396. noCache: true
  397. }
  398. },
  399. {
  400. path: '/dialysis/print/batch/thirtySeven',
  401. component: () =>
  402. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirtySeven'),
  403. hidden: true,
  404. is_menu: false,
  405. name: 'batch_print_order_thirtySeven',
  406. meta: {
  407. title: '批量打印',
  408. noCache: true
  409. }
  410. },
  411. {
  412. path: '/dialysis/print/batch/thirtyNine',
  413. component: () =>
  414. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirtyNine'),
  415. hidden: true,
  416. is_menu: false,
  417. name: 'batch_print_order_thirtyNine',
  418. meta: {
  419. title: '批量打印',
  420. noCache: true
  421. }
  422. },
  423. {
  424. path: '/dialysis/print/batch/forty',
  425. component: () =>
  426. import('@/xt_pages/dialysis/batch_print/batch_print_order_forty'),
  427. hidden: true,
  428. is_menu: false,
  429. name: 'batch_print_order_forty',
  430. meta: {
  431. title: '批量打印',
  432. noCache: true
  433. }
  434. },
  435. {
  436. path: '/dialysis/print/batch/fortyOne',
  437. component: () =>
  438. import('@/xt_pages/dialysis/batch_print/batch_print_order_fortyOne'),
  439. hidden: true,
  440. is_menu: false,
  441. name: 'batch_print_order_fortyOne',
  442. meta: {
  443. title: '批量打印',
  444. noCache: true
  445. }
  446. },
  447. {
  448. path: '/dialysis/print/batch/thirtyThree_one',
  449. component: () =>
  450. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirtyThree_one'),
  451. hidden: true,
  452. is_menu: false,
  453. name: 'dialysis_batch_print_thirtyThree_one',
  454. meta: {
  455. title: '批量打印',
  456. noCache: true
  457. }
  458. },
  459. {
  460. path: '/dialysis/print/batch/thirtyThree_two',
  461. component: () =>
  462. import('@/xt_pages/dialysis/batch_print/batch_print_order_thirtyThree_two'),
  463. hidden: true,
  464. is_menu: false,
  465. name: 'dialysis_batch_print_thirtyThree_two',
  466. meta: {
  467. title: '批量打印',
  468. noCache: true
  469. }
  470. },
  471. {
  472. path: '/dialysis/print/batch/twentyTwo_one',
  473. component: () =>
  474. import('@/xt_pages/dialysis/batch_print/batch_print_order_twentyTwo_one'),
  475. hidden: true,
  476. is_menu: false,
  477. name: 'dialysis_batch_twentyTwo_one',
  478. meta: {
  479. title: '批量打印',
  480. noCache: true
  481. }
  482. },
  483. {
  484. path: '/dialysis/print/batch/twentyTwo_two',
  485. component: () =>
  486. import('@/xt_pages/dialysis/batch_print/batch_print_order_twentyTwo_two'),
  487. hidden: true,
  488. is_menu: false,
  489. name: 'dialysis_batch_twentyTwo_two',
  490. meta: {
  491. title: '批量打印',
  492. noCache: true
  493. }
  494. },
  495. {
  496. path: '/dialysis/print/batch/otherone',
  497. component: () =>
  498. import('@/xt_pages/dialysis/batch_print/batch_print_order_other_one'),
  499. hidden: true,
  500. is_menu: false,
  501. name: 'dialysis_batch_print_two_one',
  502. meta: {
  503. title: '批量打印',
  504. noCache: true
  505. }
  506. },
  507. {
  508. path: '/dialysis/print/batch/othertwo',
  509. component: () =>
  510. import('@/xt_pages/dialysis/batch_print/batch_print_order_other_two'),
  511. hidden: true,
  512. is_menu: false,
  513. name: 'dialysis_batch_print_two_two',
  514. meta: {
  515. title: '批量打印',
  516. noCache: true
  517. }
  518. },
  519. {
  520. path: '/dialysis/print/batch/fiveone',
  521. component: () =>
  522. import('@/xt_pages/dialysis/batch_print/batch_print_order_five_one'),
  523. hidden: true,
  524. is_menu: false,
  525. name: 'dialysis_batch_print_two_two',
  526. meta: {
  527. title: '批量打印',
  528. noCache: true
  529. }
  530. },
  531. {
  532. path: '/dialysis/print/batch/fivetwo',
  533. component: () =>
  534. import('@/xt_pages/dialysis/batch_print/batch_print_order_five_two'),
  535. hidden: true,
  536. is_menu: false,
  537. name: 'dialysis_batch_print_two_two',
  538. meta: {
  539. title: '批量打印',
  540. noCache: true
  541. }
  542. }
  543. ]
  544. }