图片效果:

1.在需要下拉加载的页面json文件

{
"usingComponents": {},
"enablePullDownRefresh": true,
"backgroundTextStyle": "dark"
}
2.页面js

onPullDownRefresh: function () {
wx.showNavigationBarLoading() //在标题栏中显示加载
this.onLoad() //重新加载。。。
setTimeout(() => {
wx.hideNavigationBarLoading() //标题加载隐藏
wx.stopPullDownRefresh()
}, 1500);
},
1197

被折叠的 条评论
为什么被折叠?



