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 }) }) },