From 3b5f32ecd19d264bc8ce09949443441863dc4b99 Mon Sep 17 00:00:00 2001 From: wuxw <928255095@qq.com> Date: Fri, 3 Nov 2023 23:35:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=89=8B=E6=9C=BA=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/fee/tempCarFee.vue | 6 +++++- pages/fee/tempParkingFee.vue | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pages/fee/tempCarFee.vue b/pages/fee/tempCarFee.vue index 4b115c5..2be165b 100644 --- a/pages/fee/tempCarFee.vue +++ b/pages/fee/tempCarFee.vue @@ -110,6 +110,7 @@ inoutId:'', receivableAmount: 0.0, // 抵扣金额 couponCount: 0, + communityId:'', couponList: [] }; }, @@ -122,6 +123,7 @@ this.carNum = options.carNum; this.appId = options.appId; this.machineId = options.machineId; + this.communityId = options.communityId; this._loadTempCarFee(); }, onShow: function(options) { @@ -194,6 +196,7 @@ couponList: this.couponList, cashierUserId:'-1', machineId:this.machineId, + communityId:this.communityId, }; toAliPayTempCarFee(_objData) .then(_data=>{ @@ -239,7 +242,8 @@ inoutId: this.inoutId, couponList: this.couponList, cashierUserId:'-1', - machineId:this.machineId + machineId:this.machineId, + communityId:this.communityId, }; toPayTempCarFee(_objData) .then(_data=>{ diff --git a/pages/fee/tempParkingFee.vue b/pages/fee/tempParkingFee.vue index 440b54d..5e70efe 100644 --- a/pages/fee/tempParkingFee.vue +++ b/pages/fee/tempParkingFee.vue @@ -248,7 +248,7 @@ uni.navigateTo({ url: '/pages/fee/tempCarFee?paId=' + _that.paId + '&carNum=' + _that .carNum + "&appId=" + _that.appId + "&openId=" + _that.openId + - "&machineId=" + this.machineId + "&machineId=" + this.machineId+"&communityId="+_that.communityId }) }) },