templateManagement.js 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/templateManagement',
  4. component: Layout,
  5. redirect: 'noredirect',
  6. name: 'templateManagement',
  7. alwaysShow: true,
  8. meta: {
  9. title: 'templateManagement',
  10. icon: 'templateManagement',
  11. isChild: true
  12. },
  13. children: [
  14. {
  15. path: '/data/druguse',
  16. component: () => import('@/xt_pages/data/druguseTemplate'),
  17. name: 'druguse',
  18. meta: {
  19. title: 'druguse'
  20. }
  21. },
  22. {
  23. path: '/data/template',
  24. component: () => import('@/xt_pages/data/template'),
  25. name: 'template',
  26. meta: {
  27. title: 'template',
  28. noCache: true,
  29. }
  30. },
  31. {
  32. path: '/data/prescription',
  33. component: () => import('@/xt_pages/data/prescription'),
  34. name: 'prescription',
  35. meta: {
  36. title: 'system_prescription'
  37. }
  38. },
  39. {
  40. path: '/data/histemplate',
  41. component: () => import('@/xt_pages/data/hisTemplate'),
  42. name: 'histemplate',
  43. meta: {
  44. title: 'histemplate'
  45. }
  46. },
  47. {
  48. path:'/data/medicaltemplate',
  49. component:() => import('@/xt_pages/data/medicalTemplate'),
  50. name:'medical_template',
  51. meta:{
  52. title:'medical_template'
  53. }
  54. },
  55. ]
  56. }