uniapp开发支付宝小程序下拉刷新错误解决方法

文件  pages.json

 "globalStyle": {
    "...",
	"mp-alipay": {
		"allowsBounceVertical": "YES"
	}
  }

{
      "path": "rechargeRecord/rechargeRecord",
      "style": {
           "navigationBarTitleText": "充值记录",
           "mp-alipay": {
            	"transparentTitle": "none",
            	"pullRefresh": true
            }
        }
}

2. 页面正常监听即可

xxx.vue

onPullDownRefresh() {
    console.log('refresh');
    setTimeout(function () {
		uni.stopPullDownRefresh();
	}, 1000)
}

你可能感兴趣的:(uni-app,小程序,apache)