1234567891011121314151617181920212223242526272829 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/hospitalRecord',
- component: Layout,
- redirect: 'noredirect',
- name: 'hospitalRecord',
- alwaysShow: true,
- meta: {
- title: 'hospitalRecord',
- icon: 'hospitalRecord',
- isChild: true
- },
- children: [
- {
- path: '/hospitalRecord/index',
- component: () => import('@/xt_pages/hospitalStation/index'),
- name: 'hospitalIndex',
- meta: { title: 'hospitalIndex', noCache: true }
- }, {
- path: '/hospitalRecord/history',
- component: () => import('@/xt_pages/hospitalStation/inHospitalHistory'),
- name: 'hospitalhistory',
- meta: { title: 'hospitalhistory', noCache: true }
- },
-
- ]
- }
|