index.js 341 B

12345678910111213141516171819
  1. Page({
  2. data: {
  3. error:0 // 0:需要退出小程序 1:可以重新发起网络请求重试
  4. },
  5. reLoad:function(error){
  6. my.reLaunch({
  7. url: '/pages/index/index',
  8. })
  9. },
  10. /**
  11. * 生命周期函数--监听页面加载
  12. */
  13. onLoad: function (options) {
  14. this.setData({ error: options.error});
  15. },
  16. });