Browse Source

夜间门诊挂号提示

lighter 9 months ago
parent
commit
33d9d29371
1 changed files with 4 additions and 1 deletions
  1. 4 1
      src/views/hospital-service/appointment/AppointmentConfirm.vue

+ 4 - 1
src/views/hospital-service/appointment/AppointmentConfirm.vue

@@ -96,10 +96,13 @@ const queryAppointmentCost = () => {
 }
 
 const confirmAppointment = () => {
+  const message = appointment.ampm === '夜间门诊'
+      ? '夜间门诊就诊时间为17:30-21:00,如您疼痛难忍或病情紧急,请至一楼急诊科就诊。'
+      : '实际看诊序号以至分诊台到诊登记为准。当天未就诊,不予退号、换号、转科,敬请谅解。'
   checkAppointmentRequirements(appointment.patientId, appointment.deptCode).then(() => {
     showConfirmDialog({
       title: '温馨提示',
-      message: '实际看诊序号以至分诊台到诊登记为准。当天未就诊,不予退号、换号、转科,敬请谅解。',
+      message,
       confirmButtonText: '确认挂号',
       cancelButtonText: '取消挂号'
     }).then(() => {