赞
踩
- //下拉刷新
- onPullDownRefresh() {
- //将页码设置为1
- this.pageNum=1
- //请求列表数据
- this.getNew()
- this.getNew2()
- //加载完成停止刷新
- uni.stopPullDownRefresh();
- },
- //上拉加载
- onReachBottom() {
- //当当前列表数据长度>=数据总长度时
- if (this.list.length >= this.count) {
- //提示
- uni.showToast({
- title: '没有更多了~',
- duration: 1000,
- icon: 'none'
- })
- } else {
- //否则,页码+1,继续请求列表
- this.pageNum++
- this.getNew2()
- }
- },
- //
- getNew2(){
- request.get({
- url:'/busiNewsDetail/detail/list',
- data:{
- pageNum:this.pageNum,
- pageSize:this.pageSize,
- },
- success: res => {
- if (res.code == 200) {
- if (this.pageNum == 1) {
- this.list = res.rows
- } else {
- this.list.push(...res.rows)
- }
- this.count=res.total
- }
- }
-
- })
- },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。