支付方式优化,外带订单去除table参数

This commit is contained in:
GaoHao
2025-01-13 13:32:33 +08:00
parent 31e656eb45
commit 32ab643a6b
4 changed files with 19 additions and 5 deletions

View File

@@ -86,11 +86,19 @@
payAmount:{
immediate: true,
handler (newVal) {
if ( this.amountVIP.amount < newVal) {
// #ifdef MP-WEIXIN
this.radiovalue = 2
// #endif
// #ifdef MP-ALIPAY
this.radiovalue = 3
// #endif
}
if ( newVal <= 0 ) {
this.radiovalue = 1
let name = this.paymentMethodName[this.radiovalue-1].name;
this.$emit("groupChange",{type:this.radiovalue ,name: name })
}
let name = this.paymentMethodName[this.radiovalue-1].name;
this.$emit("groupChange",{type:this.radiovalue ,name: name })
}
},
rechargeFreeChecked:{