diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue index f6f9c9d10..0f1592c3e 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/index.vue @@ -801,8 +801,8 @@ function clickRowDb(row, column, event) { return; } row.showPopover = false; - // “待签发(已保存 requestId存在)”不允许再编辑;仅“待保存(无requestId)”允许编辑 - if (row.statusEnum == 1 && !row.requestId) { + // 仅”待签发(statusEnum==1)”允许编辑;”已签发(statusEnum==2)”及之后状态不允许编辑 + if (row.statusEnum == 1) { // 确保治疗类型为字符串,方便与单选框 label 对齐,默认为长期医嘱('1') row.therapyEnum = String(row.therapyEnum ?? '1'); row.isEdit = true;