在picker选择以后if判断失效
picker 绑定的事件
bindPickerChange: function(event) {
this.setData({
begin: this.data.beginArr[event.detail.value]
})
}
执行代码:
console.log(this.data.begin);
console.log(this.data.wage);
if (this.data.begin >= this.data.wage) {
//这里输出的begin明明小于wage为什么会执行if
console.log(this.data.begin);
console.log(this.data.wage);
this.setData({
wagetax: 0,
tax: 0,
finalWage: this.data.wage
})
return;
}
log打印的数据