diff --git a/openhis-ui-vue3/src/views/doctorstation/components/callQueue/DoctorCallDialog.vue b/openhis-ui-vue3/src/views/doctorstation/components/callQueue/DoctorCallDialog.vue index ce6032ec..de3b450c 100755 --- a/openhis-ui-vue3/src/views/doctorstation/components/callQueue/DoctorCallDialog.vue +++ b/openhis-ui-vue3/src/views/doctorstation/components/callQueue/DoctorCallDialog.vue @@ -375,7 +375,7 @@ const finishCallPatient = async () => { return; } try { - await completeEncounter(currentCallPatient.value.encounterId); + await completeEncounter({ encounterId: currentCallPatient.value.encounterId }); emit('finish'); emit('update:dialogVisible', false); ElMessage.success('患者已完诊');