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, });