From 717386d53eb6f0d6cd83107a2c7ff96b78ceb537 Mon Sep 17 00:00:00 2001 From: wuxw <928255095@qq.com> Date: Fri, 11 Nov 2022 13:58:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BC=B4=E8=B4=B9=20?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/fee/H5PayFee.js | 3 ++- api/fee/MiniPayFee.js | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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,