|
@@ -143,7 +143,7 @@
|
|
|
computed: {
|
|
|
amount: {
|
|
|
get () {
|
|
|
- return this.postData.orderPrice ? this.postData.orderPrice * 1 : ''
|
|
|
+ return this.postData.orderPrice * 1 ? this.postData.orderPrice : 0
|
|
|
},
|
|
|
set (value) {
|
|
|
this.postData.orderPrice = value
|
|
@@ -312,6 +312,7 @@
|
|
|
orderProductId: this.orderProductId,
|
|
|
...this.postData
|
|
|
}
|
|
|
+ console.log(postData)
|
|
|
delete postData.capture
|
|
|
if (!this.verifyData()) {
|
|
|
Toast({
|