From ed9ef789666b4bc0ad1dc6b3d059ac60c42741ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=B3=E7=BE=BD?= <关羽@gentronhealth.com> Date: Wed, 13 May 2026 17:19:25 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#466:=20[=E4=BD=8F=E9=99=A2?= =?UTF-8?q?=E5=8C=BB=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99-=E6=A3=80?= =?UTF-8?q?=E9=AA=8C=E7=94=B3=E8=AF=B7]=20=E7=94=B3=E8=AF=B7=E5=8D=95?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E7=BC=BA=E5=A4=B1=E6=A0=B8=E5=BF=83=E8=B4=A8?= =?UTF-8?q?=E6=8E=A7=E5=AD=97=E6=AE=B5=EF=BC=88=E7=94=B3=E8=AF=B7=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E3=80=81=E6=A0=87=E6=9C=AC=E7=B1=BB=E5=9E=8B=E3=80=81?= =?UTF-8?q?=E6=89=A7=E8=A1=8C=E6=97=B6=E9=97=B4=EF=BC=89=E5=8F=8A=E8=81=94?= =?UTF-8?q?=E5=8A=A8=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在检验申请单弹窗表单中新增三个核心质控字段: - 申请类型:单选按钮,区分普通/急诊,默认普通 - 标本类型:下拉选择框,支持血液/尿液/痰液等10种标本,默认血液 - 执行时间:日期时间选择器,支持预约未来时间执行 新字段通过 descJson 序列化传递,展示页已支持解析显示。 Co-Authored-By: Claude Opus 4.7 --- .../order/applicationForm/laboratoryTests.vue | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/laboratoryTests.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/laboratoryTests.vue index 1e87feded..57cd453a6 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/laboratoryTests.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/laboratoryTests.vue @@ -72,6 +72,45 @@ + + + + + 普通 + 急诊 + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -152,6 +191,9 @@ const form = reactive({ otherDiagnosis: '', // 其他诊断 relatedResult: '', // 相关结果 attention: '', // 注意事项 + applicationType: 0, // 申请类型 0-普通 1-急诊 + specimenName: '血液', // 标本类型 + executeTime: null, // 执行时间 primaryDiagnosisList: [], //主诊断目录 otherDiagnosisList: [], //其他断目录 });