From 33424d0a72d5ddfc62c58a5a70fc2efe5add784a Mon Sep 17 00:00:00 2001 From: guanyu Date: Sun, 17 May 2026 21:11:08 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#528:=20[=E4=BD=8F=E9=99=A2?= =?UTF-8?q?=E5=8C=BB=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99-=E6=A3=80?= =?UTF-8?q?=E6=9F=A5=E7=94=B3=E8=AF=B7]=20=E4=BF=AE=E6=94=B9=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E5=8D=95=E6=88=90=E5=8A=9F=E5=90=8E=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=85=B3=E9=97=AD=E4=B8=94=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=88=B7=E6=96=B0=20-=20=E8=B0=83=E6=95=B4su?= =?UTF-8?q?bmit=E5=87=BD=E6=95=B0=E4=B8=ADemits('submitOk')=E4=B8=8EresetF?= =?UTF-8?q?orm()=E7=9A=84=E6=89=A7=E8=A1=8C=E9=A1=BA=E5=BA=8F=EF=BC=8C?= =?UTF-8?q?=E7=A1=AE=E4=BF=9D=E5=85=88=E9=80=9A=E7=9F=A5=E7=88=B6=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E5=85=B3=E9=97=AD=E5=BC=B9=E7=AA=97=E5=86=8D=E9=87=8D?= =?UTF-8?q?=E7=BD=AE=E8=A1=A8=E5=8D=95=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- .../components/order/applicationForm/medicalExaminations.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue index 42b3d1f77..11613b940 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue @@ -501,8 +501,8 @@ const submit = () => { if (res.code === 200) { ElMessage.success(res.msg || (props.isEditMode ? '修改成功' : '保存成功')); applicationList.value = []; - resetForm(); emits('submitOk'); + resetForm(); } else { ElMessage.error(res.msg || '保存失败'); }