vue antd 下拉框卡顿懒加载优化

<template>
    <a-select
      allowClear
      mode="multiple"
      placeholder="归属业务"
      style="width: 100%"
      @change="onTreeSelect"
      @popupScroll="handlePopupScroll"
      @search="handleSearch"
    >
      <a-select-option
        v-for="(item, index) in frontDataZ"
        :key="index"
        :value="item"
      >
        {{ item }}
      </a-select-option>
    </a-select>
  </template>
  
  <script>
  export default {
    data() {
      return {
        dataZ: [], //总数据(不会改变)
        frontDataZ: [], //存放前100的数据
        valueData: "",
        treePageSize: 100,
        scrollPage: 1,
      };
    },
    created() {
      for (let index = 0; index < 100000; index++) {
        this.dataZ.push("aaa" + index);
        this.frontDataZ = this.dataZ.slice(0, 100);
      }
    },
    methods: {
      handleSearch(val) {
        this.valueData = val;
        if (!val) {
          this.showTabelCiList();
        } else {
          this.frontDataZ = [];
          this.scrollPage = 1;
          this.dataZ.forEach((item) => {
            if (item.instanceId.indexOf(val) >= 0) {
              this.frontDataZ.push(item);
            }
          });
          this.allDataZ = this.frontDataZ;
          this.frontDataZ = this.frontDataZ.slice(0, 100);
        }
      },
      handlePopupScroll(e) {
        debugger
        const { target } = e;
        const scrollHeight = target.scrollHeight - target.scrollTop;
        const clientHeight = target.clientHeight;
        // 下拉框不下拉的时候
        if (scrollHeight === 0 && clientHeight === 0) {
          this.scrollPage = 1;
          console.log(this.scrollPage);
        } else {
          // 当下拉框滚动条到达底部的时候
          if (scrollHeight < clientHeight + 5) {
            this.scrollPage = this.scrollPage + 1;
            const scrollPage = this.scrollPage; // 获取当前页
            const treePageSize = this.treePageSize * (scrollPage || 1); // 新增数据量
            const newData = []; // 存储新增数据
            let max = ""; // max 为能展示的数据的最大条数
            if (this.dataZ.length > treePageSize) {
              // 如果总数据的条数大于需要展示的数据
              max = treePageSize;
            } else {
              // 否则
              max = this.dataZ.length;
            }
            this.dataZ.forEach((item, index) => {
              if (index < max) {
                // 当data数组的下标小于max时
                newData.push(item);
              }
            });
            this.frontDataZ = newData; // 将新增的数据赋值到要显示的数组中
          }
        }
      },
    },
  };
  </script>
  
  <style>
  </style>
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值