使用组件加自定义指令实现下拉加载select和远程搜索select

原由

写这个指令主要是项目中有时候下拉框会有很多数据,一次性加载太多又太慢,影响性能。

然后我前前后后用了很多种方法,antd的组件有下拉的滚动事件,如果一开始给它默认数据的话,但是远程搜索又有问题,默认无数据的话倒是可以使用,后来我就放弃了用这个。

直接上正文

先在data的同级下创建一个自定义指令

  directives: {
    'el-select-loadmore': {
      bind(el, binding) {
        // 获取element-ui定义好的scroll盒子
        const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap')
        SELECTWRAP_DOM.addEventListener('scroll', () => {
          /**
           * scrollHeight 获取元素内容高度(只读)
           * scrollTop 获取或者设置元素的偏移值,常用于, 计算滚动条的位置, 当一个元素的容器没有产生垂直方向的滚动条, 那它的scrollTop的值默认为0.
           * clientHeight 读取元素的可见高度(只读)
           * 如果元素滚动到底, 下面等式返回true, 没有则返回false:
           * ele.scrollHeight - ele.scrollTop === ele.clientHeight;
           */
          const condition = SELECTWRAP_DOM.scrollHeight - SELECTWRAP_DOM.scrollTop <= SELECTWRAP_DOM.clientHeight
          if (condition) {
            console.log('自定义指令触底');
            binding.value()
          }
        })
      },
    },
  },
           <el-select v-el-select-loadmore="loadmore" v-model="selectedOption" filterable remote reserve-keyword
                    placeholder="请选择场所类型" :remote-method="remoteMethod" :loading="isLoading">
                    <el-option v-for="item in displayedOptions" :key="item.id" :label="item.name" :value="item.id">
                    </el-option>
                  </el-select>

在页面中使用

.其中  filterable是开启搜索 :remote-method="remoteMethod" 是搜索触发的事件 然后请求新的数据直接覆盖,上面的antd的组件覆盖不了数据,所以就没用了

     displayedOptions: [], // 用于显示的选项

      isLoading: false,     // 加载状态

      pageSize: 10,         // 每次加载的选项数量

      PageNo: 1,//当前页面

      selectedOption: ''

   loadOptions() {
      //加载数据
      const { eventType, eventBigType } = this.model
      getAction(this.url.getListAlarm, { pageSize: this.pageSize, pageNo: this.PageNo, eventBigType, eventType }).then(res => {
        console.log(res, 'res');
        this.displayedOptions = [...this.displayedOptions, ...res.result];
      })
    },
    remoteMethod(query) {
      console.log(query);
      if (query !== '') {
        this.isLoading = true;
        console.log(12311);
        const { eventType, eventBigType } = this.model
        getAction(this.url.getListAlarm, { eventBigType, eventType, keyWord: query }).then(res => {
          console.log(res, '搜索res');
          this.isLoading = false;
          this.displayedOptions = res.result
          console.log(this.displayedOptions);
          // this.displayedOptions=res.result.records
        })
      } else {
        this.PageNo = 1
        this.displayedOptions = []
        this.loadOptions()
      }
    },
    loadmore(val) {
      // console.log('事件22');
      this.PageNo++
      this.loadOptions()
    },

 可以自己在下拉触底的事件里面加逻辑判断

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

前端_彭于晏

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值