页面下拉事件onpulldownrefresh不触发
在page.json中设置enablePullDownRefresh属性 "enablePullDownRefresh":true
{
"path" : "pages/taskAllocation/myAllocation",
"style" : {
"navigationBarTitleText": "我的分配",
"navigationBarTextStyle": "white",
"enablePullDownRefresh":true
页面下拉监听即可触发
onPullDownRefresh() {
this.pageNumber
= 1;
this.hasMore
= true;
this.getList();
uni
.stopPullDownRefresh();
},
转载请注明原文地址:https://ipadbbs.8miu.com/read-22828.html