@leevan/jtui 2.0.29 → 2.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leevan/jtui",
3
- "version": "2.0.29",
3
+ "version": "2.0.30",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -1259,7 +1259,7 @@ export default {
1259
1259
  this.timeOut = setTimeout(() => {
1260
1260
  let ch = $event.target.clientHeight;
1261
1261
  let sh = $event.target.scrollHeight;
1262
- if (scrollTop + ch >= sh && scrollTop != 0) {
1262
+ if (Math.ceil(scrollTop + ch) >= sh && scrollTop != 0) {
1263
1263
  this.$emit("scrollBottom", ++this.pageIndex);
1264
1264
  }
1265
1265
  }, 200);