会诊管理中 门诊会诊申请确认和门诊会诊申请管理模块全部功能的实现。包括数据库设计,前端UI设计,后端接口开发。
This commit is contained in:
@@ -237,6 +237,21 @@ export const dynamicRoutes = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
path: '/doctorstation',
|
||||
component: Layout,
|
||||
redirect: '/doctorstation/index',
|
||||
name: 'DoctorStation',
|
||||
meta: { title: '医生工作站', icon: 'operation' },
|
||||
children: [
|
||||
{
|
||||
path: 'pending-emr',
|
||||
component: () => import('@/views/doctorstation/pendingEmr.vue'),
|
||||
name: 'PendingEmr',
|
||||
meta: { title: '待写病历', icon: 'document', permissions: ['doctorstation:pending-emr:view'] }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/features',
|
||||
component: Layout,
|
||||
@@ -298,6 +313,40 @@ export const dynamicRoutes = [
|
||||
meta: { title: '门诊日结', icon: 'document' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/consultationmanagement',
|
||||
component: Layout,
|
||||
name: 'ConsultationManagement',
|
||||
meta: { title: '会诊管理', icon: 'operation' },
|
||||
children: [
|
||||
{
|
||||
path: 'consultationapplication',
|
||||
component: () => import('@/views/consultationmanagement/consultationapplication/index.vue'),
|
||||
name: 'ConsultationApplication',
|
||||
meta: { title: '门诊会诊申请管理', icon: 'document' }
|
||||
},
|
||||
{
|
||||
path: 'consultationconfirmation',
|
||||
component: () => import('@/views/consultationmanagement/consultationconfirmation/index.vue'),
|
||||
name: 'ConsultationConfirmation',
|
||||
meta: { title: '门诊会诊申请确认', icon: 'document' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/medicationmanagement',
|
||||
component: Layout,
|
||||
name: 'MedicationManagement',
|
||||
meta: { title: '药房管理', icon: 'medication' },
|
||||
children: [
|
||||
{
|
||||
path: 'dayEndSettlement',
|
||||
component: () => import('@/views/medicationmanagement/dayEndSettlement/index.vue'),
|
||||
name: 'DayEndSettlement',
|
||||
meta: { title: '日结结算单管理', icon: 'document' }
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user