You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
453 B
28 lines
453 B
export default {
|
|
data() {
|
|
return {
|
|
showTop: false,
|
|
scrollTop: 0,
|
|
oldLocation: 0
|
|
}
|
|
},
|
|
methods: {
|
|
scrollToTopNative() {
|
|
uni.pageScrollTo({
|
|
duration: 200,
|
|
scrollTop: 0
|
|
});
|
|
}
|
|
},
|
|
onReachBottom() {
|
|
if(this.$refs.goodrecommend) this.$refs.goodrecommend.getLikeList(10)
|
|
},
|
|
onPageScroll(e) {
|
|
this.oldLocation = e.scrollTop;
|
|
if (e.scrollTop > 400) {
|
|
this.showTop = true;
|
|
} else {
|
|
this.showTop = false;
|
|
}
|
|
}
|
|
}
|
|
|