From 091b6e83b604545a4b448d156da460d9675cffac Mon Sep 17 00:00:00 2001 From: zhaoyun Date: Fri, 24 Apr 2026 15:11:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DBug#429=E6=A3=80?= =?UTF-8?q?=E6=9F=A5=E6=96=B9=E6=B3=95=E5=AD=97=E6=AE=B5=E4=B8=8D=E5=BA=94?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E9=A2=84=E5=A1=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除examinationApplication.vue中自动填充inspectionMethod的逻辑 用户应手动选择检查方法,而不是由系统自动赋值 --- .../components/examination/examinationApplication.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue b/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue index 4fb56576..987f72d6 100644 --- a/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue +++ b/openhis-ui-vue3/src/views/doctorstation/components/examination/examinationApplication.vue @@ -832,11 +832,6 @@ function handleSave() { const firstCheckType = selectedItems.value[0]?.checkType || 'unknown'; form.examTypeCode = firstCheckType; - // 如果有选中的检查方法,更新表单中的检查方法字段(取第一个选中项目的检查方法) - const firstItemWithMethod = selectedItems.value.find(item => item.selectedMethod); - if (firstItemWithMethod?.selectedMethod) { - form.inspectionMethod = firstItemWithMethod.selectedMethod.name; - } const payload = { ...form,