优化手机端

This commit is contained in:
wuxw 2023-11-03 23:35:29 +08:00
parent 20789ae7c8
commit 3b5f32ecd1
2 changed files with 6 additions and 2 deletions

View File

@ -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=>{

View File

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