From e83c35c3f16db92e7b3d71a68dc7eadcf2b6ddf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AF=B8=E8=91=9B=E4=BA=AE?= <诸葛亮@gentronhealth.com> Date: Wed, 13 May 2026 00:14:52 +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 根因:medicalExaminations.vue 保存检查申请单时,name 字段硬编码为 "检查申请单", 导致列表页所有记录的申请单名称均显示为固定字符串,无法区分具体检查项目。 修复:将 name 从硬编码改为从已选项目集合中提取 adviceName 并用顿号连接, 如选择 CT、超声两项则显示为 "CT、超声"。 Co-Authored-By: Claude Opus 4.7 --- .../components/order/applicationForm/medicalExaminations.vue | 2 +- 1 file changed, 1 insertion(+), 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 17f205fd2..c320f833d 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 @@ -483,7 +483,7 @@ const submit = () => { encounterId: patientInfo.value.encounterId, organizationId: patientInfo.value.inHospitalOrgId, requestFormId: '', - name: '检查申请单', + name: applicationListAllFilter.map(item => item.adviceName).join('、'), descJson: JSON.stringify(submitForm), categoryEnum: '2', }).then((res) => {