From 61c7138fe070e76a025ae6d2c76c3c01da2384ea Mon Sep 17 00:00:00 2001 From: guanyu Date: Mon, 18 May 2026 11:05:37 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#538:=20=E6=89=8B=E6=9C=AF=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E5=88=A0=E9=99=A4=E5=90=8E=E5=8C=BB=E5=98=B1=E6=9C=AA?= =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=88=A0=E9=99=A4=20=E2=80=94=20=E6=A0=B9?= =?UTF-8?q?=E5=9B=A0=EF=BC=9AhandleDelete=20=E6=9C=AA=20emit('saved')=20?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E7=88=B6=E7=BB=84=E4=BB=B6=E5=88=B7=E6=96=B0?= =?UTF-8?q?=E5=8C=BB=E5=98=B1=E5=88=97=E8=A1=A8=EF=BC=8C=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=EF=BC=9A=E5=88=A0=E9=99=A4/=E5=8F=96=E6=B6=88=E6=88=90?= =?UTF-8?q?=E5=8A=9F=E5=90=8E=E8=BF=BD=E5=8A=A0=20emit('saved')=20?= =?UTF-8?q?=E8=A7=A6=E5=8F=91=20prescriptionRef.getListInfo()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- .../doctorstation/components/surgery/surgeryApplication.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openhis-ui-vue3/src/views/doctorstation/components/surgery/surgeryApplication.vue b/openhis-ui-vue3/src/views/doctorstation/components/surgery/surgeryApplication.vue index fcb3d04da..a21848540 100755 --- a/openhis-ui-vue3/src/views/doctorstation/components/surgery/surgeryApplication.vue +++ b/openhis-ui-vue3/src/views/doctorstation/components/surgery/surgeryApplication.vue @@ -856,6 +856,7 @@ function handleDelete(row) { }).then(() => { getList() proxy.$modal.msgSuccess('删除成功') + emit('saved') // 通知父组件刷新医嘱列表 }).catch(error => { console.error('删除手术失败:', error) proxy.$modal.msgError('删除失败') @@ -867,6 +868,7 @@ function handleDelete(row) { }).then(() => { getList() proxy.$modal.msgSuccess('手术已取消') + emit('saved') // 通知父组件刷新医嘱列表 }).catch(error => { console.error('取消手术失败:', error) proxy.$modal.msgError('取消失败')