【bug】41998 缴费方式为汇款的校验 错误

This commit is contained in:
fengachen
2021-11-04 09:13:52 +08:00
parent a0ade5ec12
commit 4e21c01ebb
@@ -56,13 +56,14 @@ Page({
})
return
}
if(this.data.singInPersonInfo.payMode === 2 && this.data.ordeCode === '' || this.data.ordeCode === undefined || this.data.ordeCode === null ){
debugger
if(this.data.singInPersonInfo.payMode === 2 && (this.data.ordeCode === '' || this.data.ordeCode === undefined || this.data.ordeCode === null) ){
wx.showToast({
title: '请输入缴费订单号后四位数',
icon:'none'
})
return
}else if(this.data.singInPersonInfo.payMode === 2 &&this.data.ordeCode && this.data.ordeCode.length < 4){
}else if(this.data.singInPersonInfo.payMode === 2 && this.data.ordeCode && this.data.ordeCode.length < 4){
// 线上缴费才去校验
wx.showToast({
title: '请输入四位缴费订单号后四位数',