血透系统PC前端

dialysis.js 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. path: '/dialysis/dialysisrecord',
  14. component: () => import('@/xt_pages/dialysis/schedualPatient'),
  15. name: '透析记录',
  16. meta: {
  17. title: '透析记录'
  18. }
  19. },
  20. {
  21. path: '/dialysis/record/:id',
  22. component: () => import('@/xt_pages/dialysis/dialysisPage'),
  23. hidden: true,
  24. is_menu: false,
  25. name: 'paper',
  26. meta: {
  27. title: 'paper',
  28. noCache: true
  29. }
  30. },
  31. {
  32. path: '/dialysis/print',
  33. component: () => import('@/xt_pages/dialysis/dialysisPrintOrder'),
  34. hidden: true,
  35. is_menu: false,
  36. name: 'dialysisPrintOrder',
  37. meta: {
  38. title: 'dialysisPrintOrder',
  39. noCache: true
  40. }
  41. },
  42. // { path: 'advice', component: () => import('@/xt_pages/dialysis/doctorAdvice'), name: 'advice', meta: { title: 'advice' }},
  43. // { path: 'prepare', component: () => import('@/xt_pages/dialysis/dialysisPrepare'), name: 'prepare', meta: { title: 'prepare' }},
  44. {
  45. path: '/dialysis/watch',
  46. component: () => import('@/xt_pages/dialysis/bloodPresssWatch'),
  47. name: 'watch',
  48. meta: {
  49. title: 'watch'
  50. }
  51. },
  52. {
  53. path: '/dialysis/details',
  54. component: () => import('@/xt_pages/dialysis/details'),
  55. name: 'details',
  56. meta: {
  57. title: 'details'
  58. },
  59. hidden: true,
  60. is_menu: false
  61. },
  62. {
  63. path: '/dialysis/print/batch',
  64. component: () => import('@/xt_pages/dialysis/batch_print/batch_print_order'),
  65. hidden: true,
  66. is_menu: false,
  67. name: 'dialysis_batch_print',
  68. meta: {
  69. title: '批量打印',
  70. noCache: true
  71. }
  72. },
  73. {
  74. path: '/dialysis/board',
  75. component: () => import('@/xt_pages/dialysis/bulletinBoard'),
  76. name: '数据看板',
  77. meta: {
  78. title: '数据看板'
  79. }
  80. }
  81. ]
  82. }