From a09dcb92951b6ef1680d654f12cf390e26164487 Mon Sep 17 00:00:00 2001 From: chenqi Date: Sat, 9 May 2026 11:29:10 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"Fix=20Bug=20#466:=20[=E4=BD=8F?= =?UTF-8?q?=E9=99=A2=E5=8C=BB=E7=94=9F=E5=B7=A5=E4=BD=9C=E7=AB=99-?= =?UTF-8?q?=E6=A3=80=E9=AA=8C=E7=94=B3=E8=AF=B7]=20=E7=94=B3=E8=AF=B7?= =?UTF-8?q?=E5=8D=95=E7=95=8C=E9=9D=A2=E7=BC=BA=E5=A4=B1=E6=A0=B8=E5=BF=83?= =?UTF-8?q?=E8=B4=A8=E6=8E=A7=E5=AD=97=E6=AE=B5=EF=BC=88=E7=94=B3=E8=AF=B7?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E3=80=81=E6=A0=87=E6=9C=AC=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E3=80=81=E6=89=A7=E8=A1=8C=E6=97=B6=E9=97=B4=EF=BC=89=E5=8F=8A?= =?UTF-8?q?=E8=81=94=E5=8A=A8=E9=80=BB=E8=BE=91"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 637169f1d268b2b955adc42a6c12034edb6dfa5e. --- .../home/components/applicationShow/api.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js index 2b9d1c0b..16a0ef86 100755 --- a/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js +++ b/openhis-ui-vue3/src/views/inpatientDoctor/home/components/applicationShow/api.js @@ -2,7 +2,22 @@ import request from '@/utils/request'; // 申请单相关接口 - +/** + * 查询检查申请单 + */ +export function getCheck(queryParams) { + return request({ + url: '/reg-doctorstation/request-form/get-check', + method: 'get', + params: queryParams, + }); +} +/** + * 查询检验申请单 + */ +export function getInspection(queryParams) { + return request({ + url: '/reg-doctorstation/request-form/get-inspection', method: 'get', params: queryParams, });