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(); } }); }