charging.js 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. import Layout from '@/views/layout/Layout'
  2. export default {
  3. path: '/charging',
  4. component: Layout,
  5. name:'charging',
  6. redirct: '/dialysis/charging',
  7. alwaysShow: true,
  8. meta: {
  9. // title: '专业质控',
  10. title:'charging',
  11. icon: 'statistics'
  12. },
  13. children: [
  14. {
  15. path: '/dialysis/charging',
  16. component: () => import('@/xt_pages/charging/index'),
  17. name: '计费查询',
  18. meta: {
  19. title: '计费查询',
  20. noCache: true
  21. }
  22. },
  23. {
  24. path: '/dialysis/charging_cz',
  25. component: () => import('@/xt_pages/charging/charging_cz'),
  26. name: '计费充值',
  27. is_menu: false,
  28. hidden: true,
  29. meta: {
  30. title: '计费充值',
  31. noCache: true
  32. }
  33. },
  34. {
  35. path: '/dialysis/chargin_kf',
  36. component: () => import('@/xt_pages/charging/chargin_kf'),
  37. name: '计数扣费',
  38. is_menu: false,
  39. hidden: true,
  40. meta: {
  41. title: '计数扣费',
  42. noCache: true
  43. }
  44. },
  45. {
  46. path: '/dialysis/charging_collect',
  47. component: () => import('@/xt_pages/charging/charging_collect'),
  48. name: '计费汇总',
  49. meta: {
  50. title: '计费汇总',
  51. noCache: true
  52. }
  53. },
  54. ]
  55. }