左边分栏用不了这个api
代码
const query = wx.createSelectorQuery()
query.select('.tab_selected').boundingClientRect();
query.exec((res)=> {
console.log(res)
this.setData({
left: res[0].left-11,
width: res[0].width
});
})
这个页面在右边的时候是正常的
在自定义组件范围内选取是需要加in(this)..
加了in(this)好了..