基于vue组件封装的better-scroll(绝对能用)

使用Better-Scroll 来实现一些数据网格的翻页,例如上拉刷新,下拉加载更多

使用:npm install better-scroll --save
*说明:此插件没有封装数据网格,因为数据表结构会根据项目需求随时变化,所以只基于此插件基本结构进行封装
子组件:

<template>
  <div>

      <div class="wrapper" ref="wrapper">
          <slot></slot>
      </div>
    </div>


</template>

<script>
  import BScroll from "better-scroll"

  export default {
    name: 'videos',
    data(){
     return {
       scroll : '',
     }
    },
    props:{
      probeType: {
        type: Number,
        default: 1
      },
      click: {
        type: Boolean,
        default: true
      },
      scrollX: {
        type: Boolean,
        default: false
      },
      data: {
        type: Array,
        default: null
      },
      pullup: {
        type: Boolean,
        default: false
      },
      pulldown: {
        type: Boolean,
        default: false
      },
      beforeScroll: {
        type: Boolean,
        default: false
      },
      refreshDelay: {
        type: Number,
        default: 20
      }

    },
    methods : {
      initScroll(){
        if (this.$refs.wrapper){
          this.scroll = new BScroll(this.$refs.wrapper,{
            probeType: this.probeType,
            click: this.click,
            scrollX: this.scrollX
          })
          if (this.listenScroll) {
            let me = this
            this.scroll.on('scroll', (pos) => {
              me.$emit('scroll', pos)
            })
          }

         
          if (this.pullup) {
            this.scroll.on('scrollEnd', () => {
              // 滚动到底部
              if (this.scroll.y <= (this.scroll.maxScrollY + 50)) {
                this.$emit('scrollToEnd')
              }
            })
          }

      
          if (this.pulldown) {
            this.scroll.on('touchEnd', (pos) => {
              // 下拉动作
              if (pos.y > 50) {
                this.$emit('pulldown')
              }
            })
          }

      
          if (this.beforeScroll) {
            this.scroll.on('beforeScrollStart', () => {
              this.$emit('beforeScroll')
            })
          }

        }
      },
      disable() {
        this.scroll && this.scroll.disable()
      },
      enable() {

        this.scroll && this.scroll.enable()
      },
      refresh() {
        this.scroll && this.scroll.refresh()
      },
      scrollTo() {
        this.scroll && this.scroll.scrollTo.apply(this.scroll, arguments)
      },
      scrollToElement() {
        this.scroll && this.scroll.scrollToElement.apply(this.scroll, arguments)
      }

    },
    mounted() {
      this.$nextTick(() => {
          setTimeout(()=>{
            this.initScroll()
          },20)
      })
    },
    watch: {
      // 监听数据的变化
      data() {
        setTimeout(() => {
          this.refresh()
        }, this.refreshDelay)
      }
    }

  };

</script>

<style lang="less" scoped>



</style>

使用:

<template>
  <div class="scroll" style="height: 30rem">
  <iscroll :height="height" :probeType="3" :pulldown="true" :pullup="true" @scrollToEnd="end()" @pulldown="refresh_()">

    <div class="lists">
      <div class="items" v-for="(item,index) in data">
        <span>{{item.title}}</span>
      </div>
    </div>
    <div class="refresh" v-show="refresh">刷新中</div>
    <div class="empty" v-show="total == 0">抱歉,暂无数据</div>
  </iscroll>
  </div>
</template>

<script>
  import iscroll from './video'
  import ajax from '../store/appApi.js'

  export default {
    name: "test_video",
    data() {
      return {
        data: [],
        height: '45rem',
        page: 1,
        total: 1,
        refresh : false

      }
    },
    mounted() {
      this.$nextTick(() => {
        this.getData();
      })
    },
    methods: {
      getData() {
        let datas = {
          pageNo: this.page,
          pageSize: 10
        }
        ajax.getHelps(datas).then((res) => {
          this.total = (res.data.items).length;
          for (var i = 0; i < this.total; i++) {
            this.data.push(res.data.items[i]);
            this.refresh = false;
          }
        })
      },
      refresh_(){

            setTimeout(()=>{
              this.page = 1;
              this.data = [];
              this.refresh = true;
              this.getData();
            },1000)


      },
      end() {
        if (this.page) {
          this.page++;
          if (this.total == 0) {
            return
          }
          this.getData();
        }
      }
    },
    components: {
      iscroll
    }
  }
</script>

<style lang="scss">
  .wrapper{
    height: 20rem;
  }
  body {
    .wrapper {
      .lists {
        .items {
          height: 8rem;
        }
      }
    }
  }
</style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值