1234567891011121314151617181920 |
- import Layout from '@/views/layout/Layout'
-
- export default {
-
- path: '/dialysis_index',
- component: Layout,
- name:'dialysis_index',
- redirct: '/dialysis/dialysisScheduleIndex',
- children: [{
- path: '/dialysis/dialysisScheduleIndex',
- component: () => import('@/xt_pages/infor/index'),
- name: '信息归档',
- meta: {
- title: '信息归档',
- noCache: true
- }
- },]
-
- }
|