import { request, handle } from '@kasite/uni-app-base'; import { REQUEST_CONFIG } from '@/config'; /** * 获取门诊退款金额 */ export const queryMemberRefundableMoney = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/smartPay/smartPayWs/QueryMemberRefundableMoney/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; export const applySelfServiceRefund = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/order/businessOrder/ApplySelfServiceRefund/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; export const querySelfRefundRecordInfo = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/smartPay/smartPayWs/QuerySelfRefundRecordInfo/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); }; export const querySelfRefundRecordList = async (queryData: any) => { let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/smartPay/smartPayWs/QuerySelfRefundRecordList/callApiJSON.do`, queryData)); return handle.catchPromiseNew(resp, () => resp); };