From 535b4c316fd8ef5eb95857876e22535fcb882c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E4=BA=91?= <赵云@gentronhealth.com> Date: Thu, 14 May 2026 16:16:31 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#522:=20[=E4=BD=8F=E9=99=A2?= =?UTF-8?q?=E6=8A=A4=E5=A3=AB=E7=AB=99-=E4=B8=89=E6=B5=8B=E5=8D=95]=20?= =?UTF-8?q?=E4=BD=93=E5=BE=81=E5=BD=95=E5=85=A5=E7=82=B9=E5=87=BB=E4=BF=9D?= =?UTF-8?q?=E5=AD=98=E5=90=8E=E7=BC=BA=E4=B9=8F=E6=89=A7=E8=A1=8C=E5=8F=8D?= =?UTF-8?q?=E9=A6=88=E4=B8=94=E7=AA=97=E5=8F=A3=E5=BC=82=E5=B8=B8=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=85=B3=E9=97=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加保存成功提示(proxy.msgSuccess) - 移除保存成功后自动关闭弹窗的逻辑(closeDialog),保持弹窗开启方便护士核对历史记录和继续录入 Co-Authored-By: Claude Opus 4.7 --- .../views/inpatientNurse/tprChart/components/addTprDialog.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/openhis-ui-vue3/src/views/inpatientNurse/tprChart/components/addTprDialog.vue b/openhis-ui-vue3/src/views/inpatientNurse/tprChart/components/addTprDialog.vue index 02ec01beb..c36215f84 100755 --- a/openhis-ui-vue3/src/views/inpatientNurse/tprChart/components/addTprDialog.vue +++ b/openhis-ui-vue3/src/views/inpatientNurse/tprChart/components/addTprDialog.vue @@ -1057,8 +1057,8 @@ function confirmCharge() { params.recordingDate = formData.value.recordingDate || moment(new Date()).format('YYYY-MM-DD'); addVitalSigns(params).then(res => { - console.log('保存成功:', res); if (res.code === 200) { + proxy.msgSuccess('保存成功'); // 保存成功后刷新列表 getPatientList(); // 清空表单 @@ -1087,8 +1087,6 @@ function confirmCharge() { urineVolume: '', stoolVolume: '', }; - // 保存成功后关闭弹窗 - closeDialog(); } }); }