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 eae9f29e8..4ef02c14f 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 @@ -804,7 +804,7 @@ function checkUnit(item, row) { } } -// 行双击打开编辑块,仅待发送的可编辑 +// 行双击打开编辑块,"待保存"和"待签发"均可编辑 function clickRowDb(row, column, event) { // 检查点击的是否是复选框 if (event && event.target.closest('.el-checkbox')) { @@ -815,8 +815,8 @@ function clickRowDb(row, column, event) { return; } row.showPopover = false; - // “待签发(已保存 requestId存在)”不允许再编辑;仅“待保存(无requestId)”允许编辑 - if (row.statusEnum == 1 && !row.requestId) { + // statusEnum == 1 包含"待保存(无requestId)"和"待签发(有requestId)",均允许编辑 + if (row.statusEnum == 1) { // 确保治疗类型为字符串,方便与单选框 label 对齐,默认为长期医嘱('1') row.therapyEnum = String(row.therapyEnum ?? '1'); row.isEdit = true;