From 7deba511d492972ad25296c04b3a510afd2206ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E4=BA=91?= <赵云@gentronhealth.com> Date: Mon, 11 May 2026 13:50:00 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#494:=20=E4=BD=8F=E9=99=A2=E5=8C=BB?= =?UTF-8?q?=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99-=E6=A3=80=E6=9F=A5?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=EF=BC=9A"=E7=94=B3=E8=AF=B7=E5=8D=95?= =?UTF-8?q?=E5=90=8D=E7=A7=B0"=E5=AD=97=E6=AE=B5=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=B8=BA=E9=80=9A=E7=94=A8=E5=90=8D=E7=A7=B0=EF=BC=8C=E6=9C=AA?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=E5=85=B7=E4=BD=93=E6=A3=80=E6=9F=A5=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因:保存检查申请时,name 字段硬编码为"检查申请单",导致列表中无法展示具体检查项目名称。 修复:在保存时从选中的检查项目中动态提取名称(使用 adviceName 字段,以"、"分隔拼接), 当无具体名称时仍使用"检查申请单"作为兜底。 Co-Authored-By: Claude Opus 4.7 --- .../components/order/applicationForm/medicalExaminations.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue index d742b51a..bdf78518 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/medicalExaminations.vue @@ -281,13 +281,14 @@ const submit = () => { accountId: patientInfo.value.accountId, // // 账户id }; }); + const itemNames = applicationListAllFilter.map(item => item.adviceName).filter(Boolean).join('、'); saveCheckd({ activityList: applicationListAllFilter, patientId: patientInfo.value.patientId, //患者ID encounterId: patientInfo.value.encounterId, // 就诊ID organizationId: patientInfo.value.inHospitalOrgId, // 医疗机构ID requestFormId: '', // 申请单ID - name: '检查申请单', + name: itemNames || '检查申请单', descJson: JSON.stringify(form), categoryEnum: '2', // 1 检验 2 检查 3 输血 4 手术 }).then((res) => {