cyl/master-0804
jscyl13849007907 4 months ago
parent 71b12ab525
commit 9b6417098d

@ -9,6 +9,7 @@
@touchstart="onTouchStart"
@touchmove="onTouchMove"
@touchend="onTouchEnd"
@scrolltolower="onScrollToLower"
>
<view class="background-container"
style="width: 100%;overflow: hidden;"
@ -377,6 +378,16 @@ export default {
};
animate();
},
onScrollToLower() {
let that = this;
if (!that.isLogin) {
return false;
}
if (that.query.isFinish == -1 || that.query.isFinish == that.query.size) {
that.query.page++;
that.getDefault("concat");
}
},
goHome() {
if (this.fromShare) {

Loading…
Cancel
Save