Commit 79defcfc by zhangzhen

细节优化

parent 2c75d509
...@@ -788,7 +788,14 @@ ...@@ -788,7 +788,14 @@
}) })
}, },
onSubmitBuyTimesCar(){ onSubmitBuyTimesCar(){
if (!this.checked3) { if(!this.consumerMemberStatus){
uni.showToast({
icon: "none",
title: "权益会员专享,请先购买权益会员"
})
return;
}
if (!this.checked3 ) {
uni.showToast({ uni.showToast({
icon: "none", icon: "none",
title: "请先阅读充值协议并同意" title: "请先阅读充值协议并同意"
...@@ -800,7 +807,14 @@ ...@@ -800,7 +807,14 @@
this.$refs.popupPay2.open() this.$refs.popupPay2.open()
}, },
onSubmitBuyMonthsCar(){ onSubmitBuyMonthsCar(){
if (!this.checked4) { if(!this.consumerMemberStatus){
uni.showToast({
icon: "none",
title: "权益会员专享,请先购买权益会员"
})
return;
}
if (!this.checked4 ) {
uni.showToast({ uni.showToast({
icon: "none", icon: "none",
title: "请先阅读充值协议并同意" title: "请先阅读充值协议并同意"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment