uni-app上拉加载下拉刷新的一个简单例子。

<template>
    <view>
        <view v-for="item in list" :key="item.ppkid">
            {{item.headline}}
        </view>
        <text class="loadMore" v-if="loading">{{!loading && list.length<1?"没有了":"加载中"}}</text>
    </view>
</template>

<script>
    export default {
        data() {
            return {
                list:[],
                loading:false,
                refreshing:false,
                pageNo:1,
            }
        },
        onLoad() {
            this.getData();
        },
        onReachBottom() {
            /* 到底部加载 */
            this.getData();
        },
        onPullDownRefresh() {
            // 下拉刷新
            this.refreshing = true;
            this.getData();
        },
        methods: {
            async getData(){
                console.log("0000000000")
                let para={
                    page:this.refreshing ==true? 1 : this.pageNo
                };
                this.loading=true;
                const {
                    data
                } = await this.$http.getunusedpaperlist(para);
                if(data.code==1){
                    this.loading=false;
                    if (data.data.length ==0) {
                            uni.showToast({
                                title: '没有数据',
                                icon: 'none'
                            });
                            return false;
                        }
                        if (this.refreshing &&  this.list.length>0) {//上拉加载很多之后去刷新的页面
                            uni.showToast({
                                title: '已经最新',
                                icon: 'none'
                            });
                            this.refreshing = false;
                            uni.stopPullDownRefresh();
                            return;
                        }
                        if (this.refreshing) {//第一次加载
                            this.refreshing = false;
                            uni.stopPullDownRefresh();
                            this.list = data.data;
                            this.pageNo = 2;
                        } else {
                            this.list = this.list.concat(data.data);
                            this.pageNo += 1;
                        }
                }
            },
        }
    }
</script>

<style>

</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值