import { request, handle } from '@kasite/uni-app-base'; import { REQUEST_CONFIG } from '@/config'; /** * 门诊清单列表 */ export const queryOutpatientCostList = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/QueryOutpatientCostList/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; /** * 门诊费用分类 */ export const queryOutpatientCostType = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/QueryOutpatientCostType/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; /** * 门诊费用明细 */ export const queryOutpatientCostTypeItem = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/QueryOutpatientCostTypeItem/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; /** * 住院清单列表 */ export const queryInHospitalCostList = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/QueryInHospitalCostList/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; /** * 住院清单列表 */ export const queryInHospitalCostType = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/QueryInHospitalCostType/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; /** * 住院费用每日清单详情 */ export const queryInHospitalCostTypeItem = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/QueryInHospitalCostTypeItem/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); };