From 552eff2c4f38207c2882ab781e7db50774b0f5f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E=E4=BD=97?= Date: Fri, 19 Jun 2026 11:41:16 +0800 Subject: [PATCH] =?UTF-8?q?fix(#776):=20=E8=AF=B7=E4=BF=AE=E5=A4=8D=20Bug?= =?UTF-8?q?=20#776=EF=BC=88=E9=87=8D=E8=AF=95=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因: - Bug #请修复 Bug #776(重试) 存在的问题 修复: - 前端修复完成。现在验证编译: --- .../drugDistribution/components/summaryMedicineList.vue | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue b/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue index 5f6b8011f..06d13a5b2 100755 --- a/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue +++ b/healthlink-his-ui/src/views/inpatientNurse/drugDistribution/components/summaryMedicineList.vue @@ -191,10 +191,8 @@ function handleGetPrescription() { const params = { encounterIds: encounterIds || undefined }; - if (props.therapyEnum !== undefined) { - params.therapyEnum = props.therapyEnum; - } - params.tcmFlag = props.drugType === '1' ? 0 : 1; + // 注意:汇总单查询不传 tcmFlag / therapyEnum,因为汇总单表(wor_supply_request) + // 没有这些列,传入会导致 PostgreSQL 报 "column 'tcm_flag' does not exist" getMedicineSummary(params).then((res) => { medicineSummaryFormList.value = res.data.records; loading.value = false;