data: {
houseid: '2324242424',
zhname: '',
},
goMeterInfo() {
debugger
if (this.data.houseid == '') {
wx.showModal({
showCancel: false,
content: "请选择绑定房屋信息",
})
} else {
thiswx.navigateTo({
url: './meterInfo',
})
}
},
在data中已经给houseid赋值了,为什么this.data.houseid还是为空?
在页面 {{houseid}} 试试