- #405 住院医生站:医嘱保存后仍可编辑(未锁定) - #406 门诊医生站:检验申请保存失败患者信息未加载 - #408 门诊医生站:检查明细标签页显示暂无数据
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user