|
@@ -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(() => {
|