menu.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. let menus = [{
  2. index: '0',
  3. name: '患者信息',
  4. child: [{
  5. id: 'patients1',
  6. name: '今日病人列表',
  7. path: '/index/todaypatients'
  8. }, {
  9. id: 'patients2',
  10. name: '患者库列表',
  11. path: '/index/patienslist'
  12. }]
  13. }, {
  14. index: '1',
  15. name: '诊疗',
  16. child: [{
  17. id: 'diagnosis1',
  18. name: '中医电子病历',
  19. path: '/index/emr'
  20. }, {
  21. id: 'diagnosis2',
  22. name: '诊断页',
  23. path: '/index/diagnosis'
  24. }, {
  25. id: 'diagnosis3',
  26. name: '智能辩证',
  27. path: '/index/dialectical'
  28. }, {
  29. id: 'diagnosis4',
  30. name: '智能开方',
  31. path: '/index/prescribing'
  32. }, {
  33. id: 'diagnosis5',
  34. name: '体质辨识',
  35. path: '/index/physical'
  36. }]
  37. }, {
  38. index: '2',
  39. name: '知识学习',
  40. child: [{
  41. id: 'knowledge1',
  42. name: '名医医案',
  43. path: '/index/doctorcase'
  44. }, {
  45. id: 'knowledge2',
  46. name: '中药查询',
  47. path: '/index/tcm'
  48. }, {
  49. id: 'knowledge3',
  50. name: '方剂查询',
  51. path: '/index/prescription'
  52. }, {
  53. id: 'knowledge4',
  54. name: '经络穴位查询',
  55. path: '/index/xuewei'
  56. }, {
  57. id: 'knowledge5',
  58. name: '疾病查询',
  59. path: '/index/disease'
  60. }]
  61. },
  62. // {
  63. // index: '3',
  64. // name: '数据分析',
  65. // child: [{
  66. // id: 'patients1',
  67. // name: '今日病人列表'
  68. // }, {
  69. // id: 'patients2',
  70. // name: '患者库列表'
  71. // }]
  72. // },
  73. {
  74. index: '3',
  75. name: '业务管理',
  76. child: [{
  77. id: 'business1',
  78. name: '处方审核',
  79. path: '/index/recipeaudit'
  80. }, {
  81. id: 'business2',
  82. name: '处方列表',
  83. path: '/index/recipe'
  84. },
  85. // {
  86. // id: 'business3',
  87. // name: '病历列表',
  88. // path: '/index/medicalHistory'
  89. // },
  90. {
  91. id: 'business4',
  92. name: '药品目录管理',
  93. path: '/index/druglist'
  94. }, {
  95. id: 'business5',
  96. name: '药房管理',
  97. path: '/index/pharmacy'
  98. }, {
  99. id: 'business6',
  100. name: '协定方',
  101. path: '/index/accord'
  102. }, {
  103. id: 'business7',
  104. name: '我的患者',
  105. path: '/index/mypatiens'
  106. }
  107. ]
  108. }, {
  109. index: '4',
  110. name: '系统管理',
  111. child: [{
  112. id: 'system1',
  113. name: '医共体管理',
  114. path: '/index/doctorbody'
  115. }, {
  116. id: 'system2',
  117. name: '医疗机构管理',
  118. path: '/index/medInstitutions'
  119. }, {
  120. id: 'system3',
  121. name: '科室管理',
  122. path: '/index/department'
  123. }, {
  124. id: 'system4',
  125. name: '用户管理',
  126. path: '/index/userSytem'
  127. }, {
  128. id: 'system5',
  129. name: '角色管理',
  130. path: '/index/role'
  131. }, {
  132. id: 'system6',
  133. name: '公共代码管理',
  134. path: '/index/code'
  135. }, {
  136. id:'system9',
  137. path: '/index/insurance',
  138. name: '医保规则',
  139. },{
  140. id: 'system7',
  141. name: '参数管理',
  142. path: '/index/parameter'
  143. }, {
  144. id: 'system8',
  145. name: '帮助',
  146. path: '/index/help'
  147. }]
  148. },
  149. ]
  150. export {
  151. menus
  152. }