uniapp H5 实现上拉刷新 以及 下拉加载

uniapp H5 实现上拉刷新 以及 下拉加载

1. 先上图

下拉加载

2. 上代码

javascript 复制代码
<script>
	import DragableList from "@/components/dragable-list/dragable-list.vue";
	import {
		FridApi
	} from '@/api/warn.js'
	export default {
		data() {
			return {
				tableList: [],
				loadingHide: false,
				isRefreshing: false,
				loadMoreStatus: 'loading', // loading | more | noMore
				pageSize: 10,
				pageNum: 1
			}
		},
		components: {
			DragableList
		},
		mounted() {
			//获取告警列表
			this.getWarnList()
			this.loadMoreStatus = 'loading'
		},
		methods: {
		    // 下拉刷新
			refreshList() {
				this.getWarnList(true)
			},
			// 上拉加载
			loadMore() {
				console.log('list loadMore');
				if (this.tableList.length >= this.total){
					this.loadMoreStatus = 'noMore'
					 return
				}
				this.pageNum++
				this.getWarnList()
			},
			//获取告警列表
			getWarnList(isReload = false) {
				this.loadingHide = true
				this.loadMoreStatus = 'loading'
				// 请将该方法中的请求 更换为你自己的请求
				const params = {
					pageSize: this.pageSize,
					pageNum: this.pageNum,
					noiseReductionStatus: '0',
					alarmIsRecovery: '0',
					alarmSourceId: uni.getStorageSync('alarmSourceId'),
				}
				if (isReload) {
					this.pageNum = 1
					this.isRefreshing = true
					this.tableList = []
				}
				let list = []
				let baseLen = this.tableList.length

				FridApi.warnList(params)
					.then((result) => {
						this.loadingHide = true
						const res = result
						if (res.code === 0 && res.data) {
						   // 一下代码比较重要
							const data = res.data
							list = data.list
							const total = data.total
							this.tableList.push(...list)
							this.total = total
							if (this.tableList.length >= this.total) {
								this.loadMoreStatus = 'noMore'
							} else {
								this.loadMoreStatus = 'more'
							}
							this.isRefreshing = false
						}
					})
					.finally(() => {
						this.loadingHide = false
					})
			}
		}
	}
</script>

<template>
	<view class="mp-count-alarmin">
		<!-- 告警列表 -->
		<dragable-list v-if="!hideShow" :is-refreshing="isRefreshing" :load-more-status="loadMoreStatus"
			@loadMore="loadMore" @refresh="refreshList">
			<view class="mp-count-alarmin-top" v-for="item in  tableList">
		         ......... 此处请写你自己的样式代码
			</view>
		</dragable-list>
	</view>
</template>

2. 上组件 dragable-list.vue(复制可直接用)

javascript 复制代码
<script>
import UniLoadMore from "@/uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue";

/**
 * 区域滚动组件,支持上拉加载和下拉刷新。
 * 滚动区域高于页面会导致滚动异常,优先级高于页面滚动,不建议用于页面滚动。
 * */
export default {

  name: "dragable-list",
  components: {UniLoadMore},
  emits: ['refresh', 'loadMore'],
  props: {
    /**
     * 正在刷新,为 true 时重置滚动条
     * @value {boolean}
     * */
    isRefreshing: {
      type: Boolean,
      default: false
    },
    /**
     * 加载更多状态
     * @value {string} more | noMore | loading
     * */
    loadMoreStatus: {
      type: String,
      default: 'noMore'
    },
    /**
     * 刷新时候返回顶部
     * @value {boolean} true
     * */
    backTopOnRefresh: {
      type: Boolean,
      default: true
    },
  },
  data() {
    return {
      scrollTop: 0
    }
  },
  watch: {
    isRefreshing(newVal) {
      if (newVal === true && this.backTopOnRefresh) {
        this.scrollTop = 0
      }
    }
  },
  methods: {
    handleScroll(e) {
      const {scrollTop} = e.detail
      this.scrollTop = scrollTop
    },
    handleRefresh() {
      if (this.isRefreshing) return
      if (this.loadMoreStatus === 'loading') return
      this.$emit('refresh')
      this.scrollTop = 0
    },
    loadMore() {
      if (this.isRefreshing) return
      if (this.loadMoreStatus === 'more') {
        this.$emit('loadMore')
      }
    }
  },
}
</script>

<template>
  <scroll-view
      class="dragable-list"
      scroll-y
      style="height: 100%"
      refresher-background="transparent"
      :refresher-threshold="100"
      lower-threshold="0"
      :scroll-top="scrollTop"
      :refresher-triggered="isRefreshing"
      refresher-enabled
      enable-back-to-top
      show-scrollbar
      @scroll="handleScroll"
      @refresherrefresh="handleRefresh"
      @scrolltolower="loadMore"
  >
    <slot></slot>
    <uni-load-more v-if="loadMoreStatus!='noMore'" :status="loadMoreStatus" @clickLoadMore="loadMore"></uni-load-more>
  </scroll-view>
</template>

<style scoped>
.dragable-list {
    max-height: 100vh;
}
</style>
  1. 组件使用需要引入uni-ui

  2. 搞定!
相关推荐
源码潇潇和逸逸1 小时前
独立部署高校圈子平台:PHP+UniApp打造社交+交易+服务一站式校园解决方案
开发语言·uni-app·php
2501_916008894 小时前
2026 iOS 证书管理,告别钥匙串依赖,构建可复制的签名环境
android·ios·小程序·https·uni-app·iphone·webview
2501_9159184111 小时前
iOS App 拿不到数据怎么办?数据解密导出到分析结构方法
android·macos·ios·小程序·uni-app·cocoa·iphone
2501_9160088911 小时前
iOS App 抓包看不到内容,从有请求没数据一步步排查
android·ios·小程序·https·uni-app·iphone·webview
扶苏100211 小时前
记一次 uni-app开发微信小程序 textarea 的“伪遮挡”踩坑实录
微信小程序·小程序·uni-app
RuoyiOffice1 天前
企业请假销假系统设计实战:一张表、一套流程、两段生命周期——BPM节点驱动的表单变形术
java·spring·uni-app·vue·产品运营·ruoyi·anti-design-vue
KongHen021 天前
uniapp-x实现自定义tabbar
前端·javascript·uni-app·unix
RuoyiOffice1 天前
SpringBoot+Vue3+Uniapp实现PC+APP双端考勤打卡设计:GPS围栏/内网双模打卡、节假日方案、定时预生成——附数据结构和核心源码讲解
java·spring·小程序·uni-app·vue·产品运营·ruoyi
2501_915921431 天前
2026 iOS 上架新趋势 iOS 发布流程模块化
android·ios·小程序·https·uni-app·iphone·webview
窝子面2 天前
uni-app的初体验
uni-app