index.js 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. import Vue from 'vue';
  2. import Router from 'vue-router';
  3. //首页
  4. const Index = () => import('@/views/index');
  5. // 医院评审动态
  6. const Reviewhospital = () => import('@/views/reviewhospital');
  7. // 医政新闻
  8. const News = () => import('@/views/news');
  9. // 医政新闻下面的二级页面
  10. // 医政行业动态
  11. const Industry = () => import('@/views/news/industry');
  12. // 医政沙龙风采
  13. const Sharon = () => import('@/views/news/sharon');
  14. // 医政沙龙邀请函
  15. const Invitation = () => import('@/views/news/invitation');
  16. // 医院管理制度
  17. const Managementhospital = () => import('@/views/managementhospital');
  18. //新规新政
  19. const Newrules = () => import('@/views/newrules');
  20. //新规新政下面的二级页面
  21. //法律法规
  22. const Law = () => import('@/views/newrules/law');
  23. //政策解析
  24. const Policy = () => import('@/views/newrules/policy');
  25. //医疗保险
  26. const Insurance = () => import('@/views/newrules/insurance');
  27. //专家风采
  28. const Experts = () => import('@/views/experts');
  29. //专家风采下面的二级页面
  30. //分领域
  31. const Field = () => import('@/views/experts/field');
  32. // 医政风采
  33. const Doctorpolitical = () => import('@/views/doctorpolitical');
  34. //医政风采下面的二级页面
  35. //概念与责任
  36. const Concept = () => import('@/views/doctorpolitical/concept');
  37. //病房质量管理
  38. const Ward = () => import('@/views/doctorpolitical/ward');
  39. //门诊质量管理
  40. const Outpatientservice = () => import('@/views/doctorpolitical/outpatientservice');
  41. //医生技能管理
  42. const Doctorskill = () => import('@/views/doctorpolitical/doctorskill');
  43. //核心制度
  44. const Core = () => import('@/views/doctorpolitical/core');
  45. //执业医生注册
  46. const Registered = () => import('@/views/doctorpolitical/registered');
  47. //卫生支农
  48. const Farmers = () => import('@/views/doctorpolitical/farmers');
  49. //病例质量管理
  50. const Cases = () => import('@/views/doctorpolitical/cases');
  51. //健康教育
  52. const Education = () => import('@/views/doctorpolitical/education');
  53. //评审
  54. const Review = () => import('@/views/doctorpolitical/review');
  55. //护理天地
  56. const Nursing = () => import('@/views/nursing');
  57. //护理天地下面的二级页面
  58. //护理管理
  59. const Nursingmanagement = () => import('@/views/nursing/nursingmanagement');
  60. //护理质量
  61. const Nursingquality = () => import('@/views/nursing/nursingquality');
  62. //护理教育
  63. const Nursingeducation = () => import('@/views/nursing/nursingeducation');
  64. //护理科研
  65. const Nursingresearch = () => import('@/views/nursing/nursingresearch');
  66. //卫生节日一览
  67. const Healthfestival = () => import('@/views/healthfestival');
  68. //服务项目
  69. const Service = () => import('@/views/service');
  70. //服务项目下面的二级页面
  71. const MedicalAdmin = () => import('@/views/service/medicalAdmin');
  72. const Consulting = () => import('@/views/service/consulting');
  73. const Salonactivity = () => import('@/views/service/salonactivity');
  74. const Meeting = () => import('@/views/service/meeting');
  75. //新闻详情页面
  76. const NewsDetails = () => import('@/views/newsDetails');
  77. //新闻模糊查询页面
  78. const Obscure = () => import('@/views/obscure');
  79. Vue.config.productionTip = false;
  80. Vue.use(Router);
  81. export default new Router({
  82. // base: '/jkcredit/',
  83. mode: 'history',
  84. routes: [
  85. // 首页
  86. { name: 'Index', path: '/', component: Index },
  87. // 医院评审动态
  88. { name: 'Reviewhospital', path: '/reviewhospital', component: Reviewhospital},
  89. // 医政新闻
  90. { name: 'News', path: '/news', component: News},
  91. //医政新闻下面的二级页面
  92. //医政行业动态
  93. { name: 'Industry', path: '/industry', component: Industry},
  94. // 医政沙龙风采
  95. { name: 'Sharon', path: '/sharon', component: Sharon},
  96. // 医政沙龙邀请函
  97. { name: 'Invitation', path: '/invitation', component: Invitation},
  98. // 医院管理制度
  99. { name: 'Managementhospital', path: '/managementhospital', component: Managementhospital},
  100. //新规新政
  101. { name: 'Newrules', path: '/newrules', component: Newrules},
  102. //新规新政下面的二级页面
  103. //法律
  104. { name: 'Law', path: '/law', component: Law},
  105. // //法规
  106. // { name: 'Regulations', path: '/regulations', component: Regulations},
  107. //政策
  108. { name: 'Policy', path: '/policy', component: Policy},
  109. //医疗保险
  110. { name: 'Insurance', path: '/insurance', component: Insurance},
  111. //专家风采
  112. { name: 'Experts', path: '/experts', component: Experts},
  113. //专家风采下面的二级页面
  114. //分领域
  115. { name: 'Field', path: '/field', component: Field},
  116. //医政风采
  117. { name: 'Doctorpolitical', path: '/doctorpolitical', component: Doctorpolitical},
  118. //医政风采下面的二级页面
  119. //概念与职责
  120. { name: 'Concept', path: '/concept', component: Concept},
  121. //病房质量管理
  122. { name: 'Ward', path: '/ward', component: Ward},
  123. //门诊质量管理
  124. { name: 'Outpatientservice', path: '/outpatientservice', component: Outpatientservice},
  125. //医生技能管理
  126. { name: 'Doctorskill', path: '/doctorskill', component: Doctorskill},
  127. //核心制度
  128. { name: 'Core', path: '/core', component: Core},
  129. //执业医生注册
  130. { name: 'Registered', path: '/registered', component: Registered},
  131. //卫生支农
  132. { name: 'Farmers', path: '/farmers', component: Farmers},
  133. //病例质量管理
  134. { name: 'Cases', path: '/cases', component: Cases},
  135. //健康教育
  136. { name: 'Education', path: '/education', component: Education},
  137. //评审
  138. { name: 'Review', path: '/review', component: Review},
  139. //护理天地
  140. { name: 'Nursing', path: '/nursing', component: Nursing},
  141. //护理天地下的二级页面
  142. //护理管理
  143. { name: 'Nursingmanagement', path: '/nursingmanagement', component: Nursingmanagement},
  144. //护理质量
  145. { name: 'Nursingquality', path: '/nursingquality', component: Nursingquality},
  146. //护理教育
  147. { name: 'Nursingeducation', path: '/nursingeducation', component: Nursingeducation},
  148. //护理科研
  149. { name: 'Nursingresearch', path: '/nursingresearch', component: Nursingresearch},
  150. //卫生节日一览
  151. { name: 'Healthfestival', path: '/healthfestival', component: Healthfestival},
  152. //服务项目
  153. { name: 'Service', path: '/service', component: Service},
  154. { name: 'MedicalAdmin', path: '/medicalAdmin', component: MedicalAdmin},
  155. { name: 'Consulting', path: '/consulting', component: Consulting},
  156. { name: 'Salonactivity', path: '/salonactivity', component: Salonactivity},
  157. { name: 'Meeting', path: '/meeting', component: Meeting},
  158. //新闻详情页面
  159. { name: 'NewsDetails', path: '/newsDetails/:id', component: NewsDetails},
  160. //新闻模糊查询页面
  161. { name: 'Obscure', path: '/obscure', component: Obscure},
  162. ]
  163. });