欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

vue实现纯前端表格滚动分页加载

时间:2023-01-23 08:25:04|栏目:vue|点击:

本文实例为大家分享了vue实现表格滚动分页加载的具体代码,供大家参考,具体内容如下

实现效果

实现过程

<div
    style="width: 100%; overflow: hidden; position: relative"
    id="container"
    ref="container"
    @mousewheel="handleScroll"
    :style="{ height: pageHeight + 'px' }">
  <!--    表格-->
  <div class="loading-bottom" v-show="visibleLoading">
      <a-spin :spinning="visibleLoading" style="margin-right: 10px"></a-spin>正在加载数据
    </div>
</div>

js

data() {
  return {
    visibleLoading: false,
  }
},
mounted() {
  //ref指向对应div,不建议对window全局监听,会影响子div的滚动
  this.$refs.container.addEventListener('scroll', this.handleScroll);
},
beforeUnmount() {
  this.$refs.container.removeEventListener('scroll', this.handleScroll);
},
methods:{
  //滚轮监听
  handleScroll() {
    let listAllHeight =
      document.documentElement.scrollTop ||
      document.body.scrollTop + document.documentElement.scrollHeight ||
      document.body.scrollHeight;
    let containerHeight = document.querySelector('#container').scrollHeight;
    //46 + 62 + 75是表格距离页面顶部的剩余距离,跟个人布局有关
    let fieldHeight = document.querySelector('#left-field').scrollHeight + 46 + 62 + 75;
    if (
      (fieldHeight >= containerHeight && this.pageHeight !== fieldHeight) ||
      (containerHeight > fieldHeight && this.pageHeight !== containerHeight)
    ) {
      this.visibleLoading = true;
    }

    setTimeout(() => {
      if (listAllHeight === this.pageHeight && this.pageHeight < containerHeight) {
        this.pageHeight = this.pageHeight + 750;
      }
      if (this.pageHeight > containerHeight && containerHeight > fieldHeight) {
        this.pageHeight = containerHeight;
      }
      if (this.pageHeight > fieldHeight && fieldHeight >= containerHeight) {
        this.pageHeight = fieldHeight;
      }
      this.visibleLoading = false;
    }, 500);
  },
}

css

.loading-bottom {
  position: absolute;
  left: 255px;
  bottom: 0;
  height: 30px;
  padding: 5px 0;
  background-color: #d3dae6;
  width: calc(100% - 270px);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
}

上一篇:vue中使用js-xlsx导出excel的实现方法

栏    目:vue

下一篇:Vue.js实现watch属性的示例详解

本文标题:vue实现纯前端表格滚动分页加载

本文地址:http://www.codeinn.net/misctech/224258.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有