From 8b1185930eba1b1f59cb0de6021fbf72d16750ba Mon Sep 17 00:00:00 2001 From: wangjian963 <15215920+aprilry@user.noreply.gitee.com> Date: Wed, 24 Jun 2026 11:38:08 +0800 Subject: [PATCH] =?UTF-8?q?675=20[=E9=97=A8=E8=AF=8A=E5=8C=BB=E7=94=9F?= =?UTF-8?q?=E7=AB=99-=E6=A3=80=E6=9F=A5=E7=94=B3=E8=AF=B7]=20=E2=80=9C?= =?UTF-8?q?=E6=A3=80=E6=9F=A5=E6=96=B9=E6=B3=95=E2=80=9D=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E7=BC=BA=E5=B0=91=E5=BF=85=E5=A1=AB=E6=A0=87=E8=AF=86=E5=8D=B4?= =?UTF-8?q?=E6=89=A7=E8=A1=8C=E4=BA=86=E5=BC=BA=E6=A0=A1=E9=AA=8C=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/examination/examinationApplication.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/healthlink-his-ui/src/views/doctorstation/components/examination/examinationApplication.vue b/healthlink-his-ui/src/views/doctorstation/components/examination/examinationApplication.vue index 191a950f3..1eb377740 100755 --- a/healthlink-his-ui/src/views/doctorstation/components/examination/examinationApplication.vue +++ b/healthlink-his-ui/src/views/doctorstation/components/examination/examinationApplication.vue @@ -1861,10 +1861,7 @@ function handleSave() { ElMessage.warning('请至少选择一个检查明细项目'); return; } - if (selectedMethods.value.length === 0) { - ElMessage.warning('请选择检查方法'); - return; - } + // Bug #675: 移除检查方法强制非空校验,字段非必填时允许空值保存 // 从已选项目推导检查类型编码(取第一个项目的 checkType,如 CT / ECG / GI) const firstCheckType = selectedItems.value[0]?.checkType || 'unknown'; form.examTypeCode = firstCheckType;