1標題配置: json "navigationBarTitleText": "標題" 動態配置 wx.setNavigationBarTitle({ title:"標題" }) 2:禁用下拉刷新 json 配置 "enablePullDownRefresh":true 3:使用組件 json 配置 "usingComponents":{ } 4:刷新 上拉 onReachBottom:function(){} 下拉 onPullDownRefresh:function(){} 5:頁面滾動px轉rpx let systemInfo = wx.getSystemInfoSync(), coefficient = 750 / systemInfo.windowWidth, pageTop = e.scrollTop * coefficient;