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