12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/hisTool',
- component: Layout,
- redirect: 'noredirect',
- name: 'hisTool',
- alwaysShow: true,
- meta: {
- title: 'hisTool',
- icon: 'hisTool',
- isChild: true
- },
- children: [
- {
- path: '/hisTool/prescriptionTemplate',
- component: () => import('@/xt_pages/outpatientDoctorStation/prescriptionTemplate'),
- name: 'prescriptionTemplate',
- meta: { title: 'prescriptionTemplate', noCache: true }
- }, {
- path: '/hisTool/prescriptionTemplatedetail',
- component: () => import('@/xt_pages/outpatientDoctorStation/prescriptionTemplatedetail'),
- name: 'prescriptionTemplatedetail',
- hidden: true,
- is_menu: false,
- meta: { title: 'prescriptionTemplatedetail', noCache: true }
- }, {
- path: '/hisTool/costComparison',
- component: () => import('@/xt_pages/outpatientCharges/costComparison'),
- name: 'costComparison',
- meta: { title: 'costComparison', noCache: true }
- }, {
- path: '/hisTool/outpatientRecord',
- component: () => import('@/xt_pages/outpatientRecord/outpatientRecord'),
- name: 'outpatientSickRecord',
- meta: { title: 'outpatientSickRecord', noCache: true }
- },{
- path: '/hisTool/summary',
- component: () => import('@/xt_pages/outpatientTool/summary'),
- name: 'outpatientSickRecord',
- meta: { title: 'summary_tool', noCache: true }
- },
-
- ]
- }
|