import { request, handle } from '@kasite/uni-app-base'; import { REQUEST_CONFIG } from '@/config'; /** * 获取取药凭证 */ export const queryDrugQueueList = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/net/QueueWs/QueryDrugQueueList/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; /** * 出院带药-详情 */ export const queryInpatientDocAdviceList = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/member/memberApi/QueryInpatientDocAdviceList/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; export default { queryDrugQueueList, queryInpatientDocAdviceList, };