限制某个分类不想有上拉刷新功能的处理
2023-12-06 本文已影响0人
佑安丶
首先在pages.json里将enablePullDownRefresh改为true,这句是下拉刷新
但是有的情况下,比如:分类切换,限制某个分类不想有上拉刷新功能的处理
let isSupport = false
const pages = getCurrentPages(); const page = pages[pages.length - 1]; const currentWebview = page.$getAppWebview(); currentWebview.setStyle({ pullToRefresh: { support: isSupport, style: plus.os.name === 'Android' ? 'circle' : 'default' } });