index.ts 376 B

1234567891011
  1. import { request, handle } from '@kasite/uni-app-base';
  2. import { REQUEST_CONFIG } from '@/config';
  3. /**
  4. * 充值规则
  5. */
  6. export const queryFrontPayLimit = async () => {
  7. let resp = handle.promistHandleNew(await request.doPost(`${REQUEST_CONFIG.BASE_URL}wsgw/pay/PayMerchant/QueryFrontPayLimit/callApiJSON.do`, {}));
  8. return handle.catchPromiseNew(resp, () => resp);
  9. };