* 检查是否在底部 * @returns {boolean}
()
| 35 | * @returns {boolean} |
| 36 | */ |
| 37 | isAtBottom() { |
| 38 | const container = this.getContainer() |
| 39 | if (!container) return false |
| 40 | |
| 41 | const { threshold } = this.options |
| 42 | return container.scrollHeight - container.scrollTop - container.clientHeight <= threshold |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * 处理滚动事件 |
no test coverage detected