|
@@ -190,7 +190,7 @@ export default {
|
|
|
let scrollTop=document.documentElement.scrollTop || document.body.scrollTop;
|
|
|
let clientHeight=document.documentElement.clientHeight || document.body.clientHeight;
|
|
|
let scrollHeight=document.documentElement.scrollHeight || document.body.scrollHeight;
|
|
|
- if (scrollTop + clientHeight == scrollHeight) {
|
|
|
+ if (scrollTop + clientHeight >= scrollHeight) {
|
|
|
this.loadflag = true
|
|
|
this.PageTurning()
|
|
|
}
|