之前缺乏移动端的经验。一直不知道上拉加载,下拉刷新是怎么实现的。现在正好有个产品有这样一个需求。想了一会没有思路。就去找插件。啥vue-infinite-scroll,vue-virtual-scroll-list。啊呀,牛!无限滚动,十万条数据渲染。
经过我一大圈的折腾。还是默默的卸载了插件。我只是需要实现一个下拉加载,不需要其他这么多的功能。看了看其他人的源码,直接撸了起来,实现一个List组件。
效果展示
在这里插入图片描述MList.vue
<template>
<div class="list-wrap">
<div class="content" ref="list" @scroll="onScroll">
<slot></slot>
</div>
<div class="loading" v-show="loading">正在加载数据......</div>
</div>
</template>
<script lang='ts'>
import { Component, Vue, Watch, Prop } from "vue-property-decorator";
@Component({
components: {}
})
export default class extends Vue {
@Prop()
private loading!: boolean;
private onScroll() {
const obj: any = this.$refs.list;
// clientHeight 视口高度 scrollTop 滚动条离顶部的高度 scrollHeight 列表内容的高度
if (obj.clientHeight + obj.scrollTop === obj.scrollHeight) {
this.$emit("toBottom");
}
}
}
</script>
<style scoped lang="scss">
.list-wrap {
width: 100%;
height: 100%;
position: relative;
.content {
width: 100%;
height: 100%;
overflow-y: scroll;
}
.loading {
position: absolute;
bottom: -20px;
width: 100%;
height: 20px;
color: #ffffff;
}
}
::-webkit-scrollbar { // 去除滚动条边框
width: 0 !important;
}
::-webkit-scrollbar {
width: 0 !important;
height: 0;
}
</style>
使用组件
<div class="body">
<m-list @toBottom="fetchNewData()" :loading="loading">
<code-info class="item" v-for="(item,index) in dataList" :key="index"></code-info>
</m-list>
</div>
private dataList: any[] = [1, 2, 3, 4, 5, 6, 7, 8];
private loading: boolean = false;
private fetchNewData() {
this.loading = true;
setTimeout(() => {
this.dataList.push(1, 2, 3);
const ref: any = this.$refs.vueLoad;
this.loading = false;
}, 1000);
}
这里需要注意的是m-list的父容器一定要固定高度,本例为body。
网友评论