【bug】41998 缴费方式为汇款的校验 错误
This commit is contained in:
@@ -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: '请输入四位缴费订单号后四位数',
|
||||
|
||||
Reference in New Issue
Block a user