|
@@ -43,6 +43,7 @@
|
|
|
url: '',
|
|
|
},
|
|
|
signUrl: '',
|
|
|
+ realPayAmount: '',
|
|
|
canvasData: []
|
|
|
}
|
|
|
},
|
|
@@ -62,8 +63,8 @@
|
|
|
couponId: options.couponId,
|
|
|
studentId: options.studentId,
|
|
|
}
|
|
|
+ this.realPayAmount = options.realPayAmount
|
|
|
this.getContractInfo()
|
|
|
-
|
|
|
context = uni.createCanvasContext('canvas')
|
|
|
context.setLineWidth(3)
|
|
|
context.setStrokeStyle("#000000")
|
|
@@ -158,7 +159,7 @@
|
|
|
...this.orderInfo,
|
|
|
contractId: contractId
|
|
|
}, 'POST').then(res => {
|
|
|
- if (this.memberInfo.realPayAmount <= 0) {
|
|
|
+ if (this.realPayAmount <= 0) {
|
|
|
this.goToPayResult(res.data.oderNo)
|
|
|
return false
|
|
|
}
|