fix: 修复前端Bug #405 #406 #408

- #405 住院医生站:医嘱保存后仍可编辑(未锁定)
- #406 门诊医生站:检验申请保存失败患者信息未加载
- #408 门诊医生站:检查明细标签页显示暂无数据
This commit is contained in:
2026-04-22 17:29:22 +08:00
parent e2808fd6b9
commit 72c0ceac29
3 changed files with 23 additions and 0 deletions

View File

@@ -1423,6 +1423,11 @@ function handleSaveBatch() {
.then((res) => {
if (res.code === 200) {
proxy.$modal.msgSuccess('保存成功');
// 修复【#405】保存成功后重置所有待保存行的 isEdit 为 false锁定医嘱不再编辑
saveList.forEach(item => {
const row = prescriptionList.value.find(r => r.uniqueKey === item.uniqueKey);
if (row) row.isEdit = false;
});
getListInfo(false);
nextId.value == 1;
isSaving.value = false;