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 a6e98131..b04110db 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 @@ -802,7 +802,9 @@ function clickRowDb(row, column, event) { return; } row.showPopover = false; - // statusEnum == 1 允许编辑(包含新创建的”待保存”和护士退回的”待签发”) + // 允许所有 statusEnum==1 的医嘱进入编辑: + // 1. 新医嘱(无 requestId):待保存 + // 2. 护士退回医嘱(有 requestId):退回后状态重置为 DRAFT(1),需允许医生编辑修改后重新签发 if (row.statusEnum == 1) { // 确保治疗类型为字符串,方便与单选框 label 对齐,默认为长期医嘱('1') row.therapyEnum = String(row.therapyEnum ?? '1');