1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- import Layout from '@/views/layout/Layout'
-
- export default {
-
- path: '/charging',
- component: Layout,
- name:'charging',
- redirct: '/dialysis/charging',
- alwaysShow: true,
- meta: {
- // title: '专业质控',
- title:'charging',
- icon: 'statistics'
- },
- children: [
- {
- path: '/dialysis/charging',
- component: () => import('@/xt_pages/charging/index'),
- name: '计费查询',
- meta: {
- title: '计费查询',
- noCache: true
- }
- },
- {
- path: '/dialysis/charging_cz',
- component: () => import('@/xt_pages/charging/charging_cz'),
- name: '计费充值',
- is_menu: false,
- hidden: true,
- meta: {
- title: '计费充值',
- noCache: true
- }
- },
- {
- path: '/dialysis/chargin_kf',
- component: () => import('@/xt_pages/charging/chargin_kf'),
- name: '计数扣费',
- is_menu: false,
- hidden: true,
- meta: {
- title: '计数扣费',
- noCache: true
- }
- },
- {
- path: '/dialysis/charging_collect',
- component: () => import('@/xt_pages/charging/charging_collect'),
- name: '计费汇总',
- meta: {
- title: '计费汇总',
- noCache: true
- }
- },
- ]
-
- }
|