1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/hospitalCharges',
- component: Layout,
- redirect: 'noredirect',
- name: 'hospitalCharges',
- alwaysShow: true,
- meta: {
- title: 'hospitalCharges',
- icon: 'hospitalCharges',
- isChild: true
- },
- children: [
- {
- path: '/hospitalCharges/outpatientChargesManagement',
- component: () => import('@/xt_pages/hospitalStation/outpatientChargesManagement'),
- name: 'hospitalChargesManagement',
- meta: { title: 'hospitalChargesManagement', noCache: true }
- },
- // {
- // path: '/outpatientCharges/outpatientInvoice',
- // component: () => import('@/xt_pages/outpatientCharges/outpatientInvoice'),
- // name: 'outpatientInvoice',
- // meta: { title: 'outpatientInvoice', noCache: true }
- // },
- // {
- // path: '/outpatientCharges/advancePayment',
- // component: () => import('@/xt_pages/outpatientCharges/advancePayment'),
- // name: 'advancePayment',
- // meta: { title: 'advancePayment', noCache: true }
- // },
- // {
- // path: '/outpatientCharges/labelPrinting',
- // component: () => import('@/xt_pages/outpatientCharges/labelPrinting'),
- // name: 'labelPrinting',
- // meta: { title: 'labelPrinting', noCache: true }
- // },
- {
- path: '/hospitalCharges/summary',
- component: () => import('@/xt_pages/hospitalStation/summary'),
- name: 'summary',
- meta: { title: 'summary', noCache: true }
- },
- {
- path: '/hospitalCharges/chargeDetailManagement',
- component: () => import('@/xt_pages/hospitalStation/chargeDetailManagement'),
- name: 'chargeDetailManagement',
- meta: { title: 'chargeDetailManagement', noCache: true }
- },
- // {
- // path: '/outpatientCharges/incomeStatistics',
- // component: () => import('@/xt_pages/outpatientCharges/incomeStatistics'),
- // name: 'incomeStatistics',
- // meta: { title: 'incomeStatistics', noCache: true }
- // },
- // {
- // path: '/outpatientCharges/costComparison',
- // component: () => import('@/xt_pages/outpatientCharges/costComparison'),
- // name: 'costComparison',
- // meta: { title: 'costComparison', noCache: true }
- // },
- {
- path: '/hospitalCharges/summaryDetail',
- component: () => import('@/xt_pages/hospitalStation/summaryDetail'),
- hidden: true,
- is_menu: false,
- name: 'summaryDetail',
- meta: { title: 'summaryDetail', noCache: true }
- },
- {
- path: '/outpatientCharges/treatPrint',
- component: () => import('@/xt_pages/outpatientCharges/treatPrint'),
- hidden: true,
- is_menu: false,
- name: 'outpatientChargesTreatPrint',
- meta: { title: 'outpatientChargesTreatPrint', noCache: true }
- },
- {
- path: '/outpatientCharges/print',
- component: () => import('@/xt_pages/outpatientCharges/print'),
- hidden: true,
- is_menu: false,
- name: 'outpatientChargesPrint',
- meta: { title: 'outpatientChargesPrint', noCache: true }
- },
- ]
- }
|