From 701f5fed82cbedbca7243465b7eed4ad526f9d5a Mon Sep 17 00:00:00 2001 From: guanyu Date: Fri, 1 May 2026 00:07:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D#447/#453/#455?= =?UTF-8?q?=E7=94=B3=E8=AF=B7=E5=8D=95adviceTypes=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修复#447手术申请:adviceTypes改为[3,6]包含诊疗和手术类型 - 修复#453检验申请:adviceTypes从字符串'3'改为数组[3] - 修复#455检查申请:adviceTypes从字符串'3'改为数组[3] - 修复#455输血申请:adviceTypes从字符串'3'改为数组[3] - 统一所有申请单的adviceTypes为数组格式,确保后端正确解析 --- .../home/components/order/applicationForm/bloodTransfusion.vue | 2 +- .../home/components/order/applicationForm/laboratoryTests.vue | 2 +- .../components/order/applicationForm/medicalExaminations.vue | 2 +- .../home/components/order/applicationForm/surgery.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/bloodTransfusion.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/bloodTransfusion.vue index ea878af5..15683642 100644 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/bloodTransfusion.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/bloodTransfusion.vue @@ -115,7 +115,7 @@ const getList = () => { pageNum: 1, categoryCode: '28', organizationId: patientInfo.value.inHospitalOrgId, - adviceTypes: '3', //1 药品 2耗材 3诊疗 + adviceTypes: [3], //1 药品 2耗材 3诊疗 }) .then((res) => { if (res.code === 200) { 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 42da085f..547aa2c4 100644 --- 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 @@ -116,7 +116,7 @@ const getList = () => { pageNum: 1, categoryCode: '22', organizationId: patientInfo.value.inHospitalOrgId, - adviceTypes: '3', //1 药品 2耗材 3诊疗 + adviceTypes: [3], //1 药品 2耗材 3诊疗 }) .then((res) => { if (res.code === 200) { 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 07c239bf..54207971 100644 --- 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 @@ -116,7 +116,7 @@ const getList = () => { pageNum: 1, categoryCode: '23', organizationId: patientInfo.value.inHospitalOrgId, - adviceTypes: '3', //1 药品 2耗材 3诊疗 + adviceTypes: [3], //1 药品 2耗材 3诊疗 }) .then((res) => { if (res.code === 200) { diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue index 7c6c3170..bf2f535f 100644 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/order/applicationForm/surgery.vue @@ -116,7 +116,7 @@ const getList = () => { pageNum: 1, categoryCode: '24', organizationId: patientInfo.value.inHospitalOrgId, - adviceTypes: [3], //1 药品 2耗材 3诊疗 + adviceTypes: [3, 6], //1 药品 2耗材 3诊疗 6手术 }) .then((res) => { if (res.code === 200) {