From 21636de19cd7ce2a952401a3a4fbf86401833e80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=A4=87?= <刘备@gentronhealth.com> Date: Sat, 9 May 2026 17:36:15 +0800 Subject: [PATCH] =?UTF-8?q?Fix=20Bug=20#471:=20=E6=89=8B=E6=9C=AF=E7=AE=A1?= =?UTF-8?q?=E7=90=86-=E9=97=A8=E8=AF=8A=E6=89=8B=E6=9C=AF=E5=AE=89?= =?UTF-8?q?=E6=8E=92=EF=BC=9A=E6=89=8B=E6=9C=AF=E7=94=B3=E8=AF=B7=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E7=BB=93=E6=9E=9C=E4=B8=AD=E6=B7=B7=E5=85=A5=E4=BD=8F?= =?UTF-8?q?=E9=99=A2=E6=A3=80=E9=AA=8C=E7=94=B3=E8=AF=B7=E5=8D=95=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=EF=BC=88=E8=84=8F=E6=95=B0=E6=8D=AE=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 根因:手术申请查询弹窗错误使用了 getTestResultPage API(通用申请单分页接口 /reg-doctorstation/request-form/get-page), 该接口返回所有类型的申请单(含检验申请单 PAR 前缀数据),而非仅手术申请单。 修复:改为使用 getSurgery API(/reg-doctorstation/request-form/get-surgery),仅查询手术申请单数据。 Co-Authored-By: Claude Opus 4.7 --- openhis-ui-vue3/src/views/surgicalschedule/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openhis-ui-vue3/src/views/surgicalschedule/index.vue b/openhis-ui-vue3/src/views/surgicalschedule/index.vue index e7c9c6ed..30bcd5f3 100755 --- a/openhis-ui-vue3/src/views/surgicalschedule/index.vue +++ b/openhis-ui-vue3/src/views/surgicalschedule/index.vue @@ -875,7 +875,7 @@ import { getSurgerySchedulePage, addSurgerySchedule, updateSurgerySchedule, dele import { listUser } from '@/api/system/user' import { deptTreeSelect } from '@/api/system/user' import { listOperatingRoom } from '@/api/operatingroom' -import { getTestResultPage} from '@/views/inpatientDoctor/home/components/applicationShow/api.js' +import { getSurgery} from '@/views/inpatientDoctor/home/components/applicationShow/api.js' import { getTenantPage } from '@/api/system/tenant' import { getContract } from '@/views/inpatientDoctor/home/components/api.js' import SurgeryCharge from '../charge/surgerycharge/index.vue' @@ -2013,7 +2013,7 @@ function getSurgicalScheduleList() { params.applyTimeEnd = params.applyTimeRange[1] delete params.applyTimeRange } - getTestResultPage(params).then((res) => { + getSurgery(params).then((res) => { // Check if data is nested under data.data or directly under data const responseData = res.data.data || res.data applyList.value = responseData.records || []