门诊出诊医生诊室设置

This commit is contained in:
2025-12-15 15:37:23 +08:00
parent caf65e3113
commit fd1ab239a9
2 changed files with 23 additions and 9 deletions

View File

@@ -29,16 +29,16 @@ export const constantRoutes = [
{
path: '/appoinmentmanage',
component: Layout,
redirect: '/appoinmentmanage',
redirect: '/appoinmentmanage/clinicRoom',
name: 'AppoinmentManageRoot',
hidden: true,
meta: { title: '预约管理', icon: 'component' },
children: [
{
path: '',
component: () => import('@/views/appoinmentmanage/index.vue'),
name: 'AppoinmentManage',
meta: { title: '预约管理' }
path: 'clinicRoom',
component: () => import('@/views/appoinmentmanage/clinicRoom/index.vue'),
name: 'ClinicRoom',
meta: { title: '门诊出诊医生诊室设置' }
},
{
path: 'doctorschedule/:deptId',
@@ -137,6 +137,20 @@ export const constantRoutes = [
meta: { title: '套餐管理' }
}
]
},
// 预约管理直接访问路由 - 兼容外部系统访问
{
path: '/reservationRecord2/appoinmentmanage',
component: Layout,
hidden: true,
children: [
{
path: '',
component: () => import('@/views/appoinmentmanage/clinicRoom/index.vue'),
name: 'DirectClinicRoom',
meta: { title: '门诊出诊医生诊室设置' }
}
]
}
]

View File

@@ -27,7 +27,7 @@
style="width: 100%"
class="clinic-room-table"
>
<el-table-column prop="id" label="ID" width="80" align="center" />
<el-table-column prop="id" label="ID" width="180" align="center" />
<el-table-column prop="roomName" label="诊室名称" width="160" align="center" show-overflow-tooltip />
<el-table-column prop="department" label="科室名称" width="160" align="center" show-overflow-tooltip />
<el-table-column prop="building" label="诊室楼号" width="120" align="center" show-overflow-tooltip />
@@ -40,7 +40,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column prop="remarks" label="备注" min-width="140" align="center" show-overflow-tooltip />
<el-table-column prop="remarks" label="备注" min-width="100" align="center" show-overflow-tooltip />
<el-table-column prop="void" label="作废" width="90" align="center">
<template #default="scope">
<el-tag :type="scope.row.void ? 'danger' : 'success'">
@@ -48,7 +48,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="200" align="center" fixed="right">
<el-table-column label="操作" width="250" align="center" fixed="right">
<template #default="scope">
<el-button
type="primary"