diff --git a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/appointmentmanage/appservice/impl/TicketAppServiceImpl.java b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/appointmentmanage/appservice/impl/TicketAppServiceImpl.java index 27105a9da..f6be7cdeb 100755 --- a/openhis-server-new/openhis-application/src/main/java/com/openhis/web/appointmentmanage/appservice/impl/TicketAppServiceImpl.java +++ b/openhis-server-new/openhis-application/src/main/java/com/openhis/web/appointmentmanage/appservice/impl/TicketAppServiceImpl.java @@ -199,7 +199,7 @@ public class TicketAppServiceImpl implements ITicketAppService { if (OrderStatus.PATIENT_CANCELLED.getValue().equals(raw.getOrderStatus())) { dto.setStatus("已退号"); } else { - dto.setStatus("已锁定"); + dto.setStatus("已预约"); } } else if (status == SlotStatus.BOOKED) { if (OrderStatus.PATIENT_CANCELLED.getValue().equals(raw.getOrderStatus())) { @@ -380,7 +380,7 @@ public class TicketAppServiceImpl implements ITicketAppService { if (OrderStatus.PATIENT_CANCELLED.getValue().equals(raw.getOrderStatus())) { dto.setStatus("已退号"); } else { - dto.setStatus("已锁定"); + dto.setStatus("已预约"); } } else if (status == SlotStatus.BOOKED) { if (OrderStatus.PATIENT_CANCELLED.getValue().equals(raw.getOrderStatus())) { diff --git a/openhis-ui-vue3/src/views/appoinmentmanage/outpatientAppointment/index.vue b/openhis-ui-vue3/src/views/appoinmentmanage/outpatientAppointment/index.vue index a615496f9..c321cb7fb 100755 --- a/openhis-ui-vue3/src/views/appoinmentmanage/outpatientAppointment/index.vue +++ b/openhis-ui-vue3/src/views/appoinmentmanage/outpatientAppointment/index.vue @@ -66,9 +66,6 @@ - @@ -473,7 +470,6 @@ import useUserStore from '@/store/modules/user'; const STATUS_CLASS_MAP = { '未预约': 'status-unbooked', - '已锁定': 'status-locked', '已预约': 'status-booked', '已取号': 'status-checked', '已退号': 'status-returned', @@ -1011,7 +1007,6 @@ export default { // 🔧 BugFix#399: 确保已取号状态正确匹配 const statusMap = { unbooked: ['未预约'], - locked: ['已锁定'], booked: ['已预约'], checked: ['已取号', '已签到'], cancelled: ['已停诊', '已取消'],