最近公司在研发app,选择了基于Vue框架的vux组件库,现总结在实现上拉刷新功能遇到的坑: 
1.问题:只刷新一次,解决方法:需要自己手动重置状态 
this.scrollerStatus.pullupStatus = ‘default’, 
2.问题:不能滚动,解决方法:因为启用keep-alive缓存,需要设置

activated () {
this.$refs.scroller.reset()
}

如果还没效果,请在获取后台数据后,执行如下代码

this.$nxtTick(() => {
this.$refs.scroller.reset()
})

贴出整个页面的代码。

<template>
<div style="height:100%;"> <x-header slot="header" :left-options="{showBack: false}" >会议列表
<a slot="right" v-on:click="show = true" > <icon type="search"></icon> </button> </a>
</x-header> <!-- 会议列表 -->
<scroller v-model="scrollerStatus" height="-46" lock-x scrollbar-y ref="scroller" :bounce="isbounce" :use-pullup="showUp" :pullup-config="upobj" @on-pullup-loading="selPullUp" >
<div class="box2">
<p v-for="list, index in lists">
<router-link :to="{ path: list.id } ">
<p style="height:40px;">
<span class="spanMeetTitle" v-html='(index+1) + " . " + list.name' ></span>
<span class="spanMeetStatu" v-html='list.status'></span>
</p>
<p class="prevSuper">
<form-preview header-label="" header-value="" :bodyItems="list" :footer-buttons="buttons1"></form-preview>
</p>
</router-link>
<hr>
</p>
</div>
</scroller> <!-- 导航 -->
<Home></Home> <!-- 搜索 -->
<popup v-model="show" @on-hide="log('hide')" @on-show="log('show')" height="93%">
<div class="popup0">
<group>
<x-input v-model='meetName' placeholder="请输入“会议名称”搜索"></x-input>
<div style="float:left;margin-top: -36px;"><icon type="search"></icon></div>
</group>
<!--
<group>
<checklist :max=1 title="会议审批状态" required :options="commonList" v-model="checkStatus" @on-change="change"></checklist>
</group> --> <group title="会议审批状态">
<radio :options="commonList" v-model="checkStatus" @on-change="change"></radio>
</group> <group title="会议类型">
<selector placeholder="请选择会议类型" v-model="checkType" :options="meetType"></selector>
</group> <group title="召开时间">
<flexbox>
<flexbox-item>
<div class="flex-demo" style="background-color:white;color:black;height:45px">
<datetime title='' placeholder="请选择" v-model="startTime" format="YYYY-MM-DD HH:mm" @on-change="change" ></datetime>
</div>
</flexbox-item>

<flexbox-item>
<div class="flex-demo" style="background-color:white;color:black;height:45px">
<datetime title='' placeholder="请选择" v-model="stopTime" format="YYYY-MM-DD HH:mm" @on-change="change" ></datetime>
</div>
</flexbox-item>
</flexbox>
</group>
<br>
<flexbox orient="vertical">
<flexbox-item><div class="flex-demo" v-on:click="toSearch" >确定</div></flexbox-item>
<flexbox-item><div class="flex-demo" v-on:click="show = false" style="background-color:white;color:black">取消</div></flexbox-item>
</flexbox> </div>
</popup> <toast v-model="showToast">已加载全部数据</toast> <loading v-model="isShowLoading" :text="textLoading"></loading> <alert v-model="isShowAlert" :title="AlertCongratulations" > {{ alertMessage }}</alert>
</div>
</template> <style type="text/css">
.weui-form-preview__value{
font-size: 1.1em !important;
color: black;
}
.spanMeetTitle{
float: left;
border-radius: 13px;
padding:10px 6px;
font-size: 15px;
font-weight: bold;
margin-left: 3px;
color: black;
}
.spanMeetStatu{
float: right;
background-color: green;
border-radius: 10px;
padding:6px 5px;
color: white;
font-size: 13px;
margin-top: 5px;
}
.flex-demo{
height: 30px;padding-top: 5px;
}
.selected{
color: blue !important;
background-color: transparent;
}
.popup0 {
padding-bottom:15px;
height:200px;
}
.popup1 {
width:100%;
height:100%;
}
.popup2 {
padding-bottom:15px;
height:400px;
}
.box1 {
height: 100px;
position: relative;
width: 1490px;
}
.box1-item {
width: 200px;
height: 100px;
background-color: #ccc;
display:inline-block;
margin-left: 15px;
float: left;
text-align: center;
line-height: 100px;
}
.box1-item:first-child {
margin-left: 0;
}
.box2-wrap {
height: 300px;
overflow: hidden;
}
</style> <script>
import { XHeader, Group, FormPreview, Tabbar, TabbarItem, Scroller, Icon, Popup, XSwitch, Toast, XInput, Checklist, Datetime, Flexbox, FlexboxItem, Selector, Loading, Alert, Radio } from 'vux'
import Home from './Home' export default {
components: {
XHeader,
Home,
Group,
FormPreview,
Tabbar,
TabbarItem,
Scroller,
Icon,
Popup,
XSwitch,
Toast,
XInput,
Checklist,
Datetime,
Flexbox,
FlexboxItem,
Selector,
Loading,
Alert,
Radio
},
data () {
return {
type: '1',
PageIndex: 0,
show: false,
showToast: false,
showloading: false,
showUp: true,
isbounce: false,
isShowAlert: false,
AlertCongratulations: '条件有误',
textloading: '加载中',
alertMessage: '‘召开时间’ 不能大于 ‘结束时间’',
value: '',
meetName: '',
startTime: '',
stopTime: '',
meetType: [],
commonList: [{key: '20', value: '审批中'}, {key: '50', value: '审批通过'}, {key: '', value: '全部'}],
checkStatus: '',
checkType: '',
commonList2: [],
results: [],
lists: [[]],
buttons1: [{
style: 'primary',
text: '查看更多',
link: '/Message'
}],
upobj: {
content: '请上拉刷新数据',
pullUpHeight: 60,
height: 40,
autoRefresh: false,
downContent: '请上拉刷新数据',
upContent: '请上拉刷新数据',
loadingContent: '加载中...',
clsPrefix: 'xs-plugin-pullup-'
},
isShowLoading: false,
textLoading: '加载中',
scrollerStatus: {
pullupStatus: 'default'
}
}
},
mounted () {
console.log(this.scrollerStatus.pullupStatus)
this.getMeetList(true)
this.getMeetType()
this.$nextTick(() => {
this.$refs.scroller.reset()
})
},
methods: {
log (str) {
console.log(str)
},
getMeetList (isEmpty) {
var APPROVE_STATUS = this.checkStatus
var MEETING_TYPE = this.checkType
this.isShowLoading = true
this.$http.post(global.httpsUrl + '/Meet/GetMeetList', {'HumanId': global.userid, 'KEY': this.meetName, 'APPROVE_STATUS': APPROVE_STATUS, 'MEETING_TYPE': MEETING_TYPE, 'START_DATE': this.startTime, 'STOP_DATE': this.stopTime, 'PageIndex': this.PageIndex, 'PageSize': '2'}).then(response => {
// sucess callback
console.log('111')
var data = response.body.Data
if (isEmpty) {
this.lists = []
this.show = false
} else {
if (data && data.length === 0) {
this.showToast = true
this.isShowLoading = false
this.scrollerStatus.pullupStatus = 'disabled' // 禁用下拉
return
}
}
for (var i = 0; i < data.length; i++) {
if (data[i].APPROVE_STATUS < 20) {
break
}
var personName = data[i].PERSION1_NAME
if (personName && personName.length > 0) {
personName = personName.substring(0, personName.indexOf('&gt;'))
}
var meetlist = []
var obj = {
label: '地点',
value: data[i].ADDRESS
}
meetlist.push(obj)
obj = {
label: '主持人',
value: personName
}
meetlist.push(obj)
obj = {
label: '召开时间',
value: global.formatDate.methods.toSet(data[i].ACT_START_TIME, 'yyyy-MM-dd HH:mm')
}
meetlist.push(obj)
obj = {
label: '会议类型',
value: data[i].MEETING_TYPE_NAME
}
meetlist.push(obj)
meetlist.id = 'FromMeet/' + data[i].MEETING_MINUTES_GUID + '/123'
meetlist.name = data[i].MEETING_NAME
var vstatus = '审批中'
if (data[i].APPROVE_STATUS === 50) {
vstatus = '审批通过'
}
meetlist.status = vstatus
this.lists.push(meetlist)
}
this.isShowLoading = false
if (!isEmpty) {
this.scrollerStatus.pullupStatus = 'default'
// this.$refs.scroller.reset()
console.log(this.scrollerStatus.pullupStatus)
this.$nextTick(() => {
this.$refs.scroller.reset()
})
}
}, response => {
// error callback
this.show = false
})
},
showSearch () {
this.show = true
},
change (val) {
console.log('change', val)
console.log(this.startTime)
},
change2 (val) {
console.log('change', val)
},
resultClick () {
},
getResult () {
},
toSearch () {
console.log(2222)
if (this.startTime && this.stopTime && this.startTime > this.stopTime) {
this.isShowAlert = true
} else {
this.PageIndex = 0
this.getMeetList(true)
}
},
selPullUp () {
console.log('上拉刷新数据')
this.PageIndex++
this.getMeetList(false)
},
getMeetType () {
this.$http.post(global.httpsUrl + '/Meet/GetMeetType').then(response => {
// sucess callback
var data = response.body.Data
for (var i = data.length - 1; i >= 0; i--) {
var obj = {
key: data[i].TYPE_GUID,
value: data[i].TYPE_NAME
}
this.meetType.push(obj)
}
}, response => {
// error callback
})
}
},
activated () {
this.$refs.scroller.reset()
}
}
</script> <style lang="less">
@import '~vux/src/styles/1px.less'; .flex-demo {
text-align: center;
color: #fff;
background-color: #20b907;
border-radius: 4px;
background-clip: padding-box;
}
</style>

使用vux实现上拉刷新的总结的更多相关文章

  1. vux (scroller)上拉刷新、下拉加载更多

    1)比较关键的地方是要在 scroller 组件上里加一个 ref 属性 <scroller :lockX=true height="-170" :pulldown-conf ...

  2. 【转】vux (scroller)上拉刷新、下拉加载更多

    1)比较关键的地方是要在 scroller 组件上里加一个 ref 属性 <scroller :lockX="true" height="-170" :p ...

  3. SwipeRefreshLayout + RecyclerView 实现 上拉刷新 和 下拉刷新

    下拉刷新和上拉刷新都用SwipeRefreshLayout 自带的进度条 布局 <?xml version="1.0" encoding="utf-8"? ...

  4. 使用MJRefresh遇到的一个问题,上拉刷新后tableview瞬间滑到最底部

    最近用MJRefresh上拉刷新时遇到一个问题,就是上拉刷新后,tableview会瞬间滑到最底部,用户还要往回翻才能看到新刷出来的数据,体验十分不好.查了很久没找到原因,最后发现在refreshvi ...

  5. MUI - 上拉刷新/下拉加载

    新闻信息列表必备的功能,支持Table,Ul等列表. 以下是DIV版本,在安卓端或者ios端必须使用双webview模式,传送门:http://dev.dcloud.net.cn/mui/pulldo ...

  6. Android UI之下拉刷新上拉刷新实现

    在实际开发中我们经常要用到上拉刷新和下拉刷新,因此今天我写了一个上拉和下拉刷新的demo,有一个自定义的下拉刷新控件 只需要在布局文件中直接引用就可以使用,非常方便,非常使用,以下是源代码: 自定义的 ...

  7. Android PullToRefreshListView上拉刷新和下拉刷新

    PullToRefreshListView实现上拉和下拉刷新有两个步骤: 1.设置刷新方式 pullToRefreshView.setMode(PullToRefreshBase.Mode.BOTH) ...

  8. ListView(2)最简单的上拉刷新,下拉刷新

    最简单的上拉刷新和下拉刷新,当listview滚动到底部时向上拉刷新数据.当listview滚动到最顶部时下拉刷新.       图1,上拉刷新 图2,下拉刷新 1,设置lisview,加载heade ...

  9. jQuery模拟原生态App上拉刷新下拉加载

    jQuery模拟原生态App上拉刷新下拉加载效果代码,鼠标上拉时会显示loading字样,并且会模拟加载一条静态数据,支持触屏设备使用. <!doctype html> <html ...

随机推荐

  1. AndroidStudio遇到过的问题

    尊重原创 1.uses-sdk:minSdkVersion 1 cannot be smaller than version 4 declared in library [com.android.su ...

  2. Window PHP 使用命令行模式

    电脑系统: win7 php环境: phpstudy 1 把php目录放到环境变量path下面: 我的电脑->属性->高级->环境变量->系统变量->Path->编 ...

  3. java高级---->Thread之FutureTask的使用

    FutureTask类是Future 的一个实现,并实现了Runnable,所以可通过Excutor(线程池) 来执行,也可传递给Thread对象执行.今天我们通过实例来学习一下FutureTask的 ...

  4. 图论之最短路径(3)队列优化的Bellman-Ford算法(SPFA算法)

    在Bellman-Ford算法中 我们可以看到大量的优化空间:如果一个点的最短路径已经确定了,那么它就不会再改变,因此不需要再处理.换句话说:我们每次只对最短路径改变了的顶点的所有出边进行操作 使用一 ...

  5. 高中生的IT之路-1.2离开校园

    记得那是07年夏季的一天,高考成绩出来之后,班主任老师通知大家回学校报考志愿. 那天我刚到学校会议室,我还没来得及和同学见面就被班主任喊过去了,把志愿表递给我了我,我当时连仔细看那张志愿表都没看,随手 ...

  6. 转载-解决使用httpClient 4.3.x登陆 https时的证书报错问题

    今天在使用httpClient4.3.6模拟登陆https网站的时候出现了证书报错的问题,这是在开源中国社区里找到的可行的答案(原文链接:http://www.oschina.net/question ...

  7. TextureMerger1.6.6 二:Sprite Sheet的制作和使用

    本随笔记录下Sprite Sheet的制作和使用 Sprite Sheet主要用于将零碎的小图合并成一张整图.减少加载图片时http的请求次数. 1 打开TextureMerger,选择Sprite ...

  8. 【BZOJ4099】Trapped in the Haybales Gold STL

    [BZOJ4099]Trapped in the Haybales Gold Description Farmer John has received a shipment of N large ha ...

  9. matplotlib 散点图scatter

    最近开始学习python编程,遇到scatter函数,感觉里面的参数不知道什么意思于是查资料,最后总结如下: 1.scatter函数原型 2.其中散点的形状参数marker如下: 3.其中颜色参数c如 ...

  10. 组织机构代码校验码生成算法(C#版)

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...