Commit 7a9d97f9 authored by 刘攀's avatar 刘攀

fix

parents 6bffc023 791a3c34
......@@ -325,7 +325,7 @@
// #endif
// #ifdef MP-ALIPAY
// 若用户无余额 && 无储值推荐, 且支付金额不大于50(不参与花呗分期),直接拉起支付
!this.userStoreBalance && !this.userPlatformBalance && (isGroup || (!isGroup && !this.storedRecommendList.length && this.amount < 50))
!this.userStoreBalance && !this.userPlatformBalance && (isGroup || (!isGroup && !this.storedRecommendList.length && this.amount <= 50))
// #endif
) {
this.beforePayment()
......
......@@ -203,7 +203,7 @@
} else if (!util.isMobile(this.obj.mobile)) {
prompt.toast('请输入正确的手机号码')
//判断是否选择地区
} else if (this.obj.province == '' || this.obj.city == '' || this.obj.area == '') {
} else if (this.obj.province == '' || this.obj.city == '') {
prompt.toast('请选择地区')
//判断是否输入详情地址
} else if (this.obj.street == '') {
......
......@@ -156,7 +156,7 @@
} else if (!util.isMobile(this.obj.mobile)) {
prompt.toast('请输入正确的手机号码')
//判断是否选择地区
} else if (this.obj.district.province == '' || this.obj.district.city == '' || this.obj.district.area == '') {
} else if (this.obj.district.province == '' || this.obj.district.city == '') {
prompt.toast('请选择地区')
//判断是否输入详情地址
} else if (this.obj.street == '') {
......
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