123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import Layout from '@/views/layout/Layout'
-
- export default {
- path: '/templateManagement',
- component: Layout,
- redirect: 'noredirect',
- name: 'templateManagement',
- alwaysShow: true,
- meta: {
- title: 'templateManagement',
- icon: 'templateManagement',
- isChild: true
- },
- children: [
- {
- path: '/data/druguse',
- component: () => import('@/xt_pages/data/druguseTemplate'),
- name: 'druguse',
- meta: {
- title: 'druguse'
- }
- },
- {
- path: '/data/template',
- component: () => import('@/xt_pages/data/template'),
- name: 'template',
- meta: {
- title: 'template',
- noCache: true,
-
- }
- },
- {
- path: '/data/prescription',
- component: () => import('@/xt_pages/data/prescription'),
- name: 'prescription',
- meta: {
- title: 'system_prescription'
- }
- },
- {
- path: '/data/histemplate',
- component: () => import('@/xt_pages/data/hisTemplate'),
- name: 'histemplate',
- meta: {
- title: 'histemplate'
- }
- },
- {
- path:'/data/medicaltemplate',
- component:() => import('@/xt_pages/data/medicalTemplate'),
- name:'medical_template',
- meta:{
- title:'medical_template'
- }
-
- },
- ]
- }
|