// index.js Page({ data: { searchValue: '', clientHeight: 0, clientTop: 0, bannerList: [ {imgurl: ''}, {imgurl: 'adsa.png'}, {imgurl: 'adsa.png'}, {imgurl: 'adsa.png'}, ], bannerSwiperOption: { indicatorDots: true, vertical: false, autoplay: true, interval: 3000, duration: 500 }, }, onLoad() { const res = wx.getMenuButtonBoundingClientRect() this.setData({clientHeight: res.height}) this.setData({clientTop: res.top}) } })