mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
30 lines
567 B
TypeScript
30 lines
567 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
|
|
VantComponent({
|
|
data: {
|
|
container: () => {},
|
|
scrollTop: 0,
|
|
offsetTop: 0,
|
|
},
|
|
|
|
mounted() {
|
|
this.setData({
|
|
container: () => this.createSelectorQuery().select('#container'),
|
|
});
|
|
},
|
|
|
|
methods: {
|
|
onScroll(event) {
|
|
this.createSelectorQuery()
|
|
.select('#scroller')
|
|
.boundingClientRect((res) => {
|
|
this.setData({
|
|
scrollTop: event.detail.scrollTop,
|
|
offsetTop: res.top,
|
|
});
|
|
})
|
|
.exec();
|
|
},
|
|
},
|
|
});
|