diff --git a/api/fee/H5PayFee.js b/api/fee/H5PayFee.js index 58b7746..cb1e24e 100644 --- a/api/fee/H5PayFee.js +++ b/api/fee/H5PayFee.js @@ -11,6 +11,7 @@ export function payOweFee(_that) { }); let _tradeType = 'JSAPI'; let _objData = { + business: "oweFee", cycles: _that.feeMonth, communityId: _that.communityId, ownerId: _that.ownerId, @@ -21,7 +22,7 @@ export function payOweFee(_that) { storeId: _that.storeId }; context.request({ - url: url.toOweFeePay, + url: url.unifiedPayment, header: context.getHeaders(), method: "POST", data: _objData, diff --git a/api/fee/MiniPayFee.js b/api/fee/MiniPayFee.js index 6742910..4818933 100644 --- a/api/fee/MiniPayFee.js +++ b/api/fee/MiniPayFee.js @@ -11,6 +11,7 @@ export function payOweFee(_that) { let accountInfo = uni.getAccountInfoSync(); let appId = accountInfo.miniProgram.appId; let _objData = { + business: "oweFee", cycles: _that.feeMonth, communityId: _that.communityId, ownerId: _that.ownerId, @@ -21,7 +22,7 @@ export function payOweFee(_that) { storeId: _that.storeId }; context.request({ - url: url.toOweFeePay, + url: url.unifiedPayment, header: context.getHeaders(), method: "POST", data: _objData,