app.js 788 B

12345678910111213141516171819202122232425262728293031323334
  1. //app.js
  2. App({
  3. onLaunch: function () {
  4. this.getUpdateReady()
  5. },
  6. onShow: function (e) {
  7. //console.log(e)
  8. if (e.scene == 1037) {
  9. wx.reportAnalytics('source_applet', {
  10. source_app_id: e.referrerInfo.appId,
  11. });
  12. }
  13. },
  14. //自动检测更新
  15. getUpdateReady: function () {
  16. wx.getUpdateManager().onUpdateReady(function () {
  17. wx.showModal({
  18. title: '更新提示',
  19. content: '新版本已经准备好,是否重启应用?',
  20. showCancel: false,
  21. success: function (res) {
  22. if (res.confirm) {
  23. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  24. updateManager.applyUpdate()
  25. }
  26. }
  27. })
  28. })
  29. },
  30. globalData: {
  31. city:'广州'
  32. }
  33. })