1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| // 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})
| }
| })
|
|