1.加载更多封装成全局组件,步骤跟我封装全局轮播图,全局骨架屏一样,可以看一下
这里用到了vueuse,先装包?npm i? @vueuse/core
<template>
<div class="xtx-infinite-loading" ref="target">
<!-- 正在加载数据时显示 -->
<div class="loading" v-if="isLoading">
<span class="img"></span>
<span class="text">正在加载...</span>
</div>
<!-- 数据全部加载完毕时显示 -->
<div class="none" v-if="isFinished">
<span class="text">亲,没有更多了</span>
</div>
</div>
</template>
<script>
import { ref } from 'vue'
import { useIntersectionObserver } from '@vueuse/core'
export default {
name: 'XtxInfiniteLoading',
props: {
isLoading: { type: Boolean, default: true }, // 是否正在加载
isFinished: { type: Boolean, default: false } // 有没有全部加载完成
},
setup (props, { emit }) {
const target = ref(null)
useIntersectionObserver(target,
([{ isIntersecting }], dom) => {
if (isIntersecting && props.isLoading === false && props.isFinished === false) {
emit('load')
}
console.log('是否可见', isIntersecting)
})
return { target }
}
}
</script>
<style scoped lang='less'>
.xtx-infinite-loading {
.loading {
display: flex;
align-items: center;
justify-content: center;
height: 200px;
.img {
width: 50px;
height: 50px;
background: url('~@/assets/images/load.gif') no-repeat center / contain;
}
.text {
color: #999;
font-size: 16px;
}
}
.none {
display: flex;
align-items: center;
justify-content: center;
height: 200px;
.text {
color: #999;
font-size: 16px;
}
}
}
</style>
2.父组件需要传给子组件: 1.是否加载完成 2.是否加载中....
上面子组件判断,如果进入可视区域,并且也不是加载中....,也没有加载完成,这时候给父组件抛出事件。父组件需要把是否加载状态改为加载中,开始发请求,请求回来的数据如果你直接赋值给goodsList的话,假如说一页是20条,那你显示的就只是20条(每页的最新20条数据),所以你需要把请求回来的每页数据 push 到?goodsList中。
<XtxInfinteLoading :isFinished="isFinished" :isLoading="isLoading" @load="loadData"/>
const loadData = () => {
isLoading.value = true
findSubCategoryGoods(reqParams).then(data => {
console.log('findSubCategoryGoods', data)
// 新数据要追加到数组中
goodsList.value.push(...data.result.items)
reqParams.page++ // 页码++,重新请求下一页数据
// 判断是否加载完成
if (data.result.items.length === 0) {
isFinished.value = true
}
isLoading.value = false
})
}
let reqParams = {
page: 1,
pageSize: 20,
categoryId: router.params.id,
sortField: null, // 排序类别
attrs: [], // 商品属性
brandId: null // 品牌名称
}
注册全局的时候,如果你写的 .name
?这名字要一致
?要么就app.component('xxxxx' ,xxxxx )
|