其他分享
首页 > 其他分享> > uniapp动态禁止下拉刷新

uniapp动态禁止下拉刷新

作者:互联网

// 禁止下拉刷新
            isPullDown(isPull) {
                //获取当前 Webview 窗口对象
                const pages = getCurrentPages();
                const page = pages[pages.length - 1];
                const currentWebview = page.$getAppWebview();
                //根据状态值来切换禁用/开启下拉刷新
                currentWebview.setStyle({
                    pullToRefresh: {
                        support: isPull,
                        // style: plus.os.name === 'Android' ? 'circle' : 'default',
                        style: 'circle'
                    }
                });
            },

this.isPullDown(false)

 

标签:uniapp,style,禁止,const,currentWebview,isPull,刷新,pages
来源: https://www.cnblogs.com/xuxux/p/16249125.html