app.js 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. App({
  2. onLaunch: function () {
  3. let updateManager = wx.getUpdateManager()
  4. updateManager.onCheckForUpdate(function (res) {
  5. console.log(res.hasUpdate)
  6. })
  7. updateManager.onUpdateReady(function () {
  8. wx.showModal({
  9. title: '更新提示',
  10. content: '新版本已经准备好,是否重启应用?',
  11. success(res) {
  12. if (res.confirm) {
  13. updateManager.applyUpdate()
  14. }
  15. }
  16. })
  17. })
  18. updateManager.onUpdateFailed(function () {
  19. wx.showToast({
  20. title: '更新失败',
  21. icon: 'none'
  22. })
  23. })
  24. },
  25. config: require('utils/config.js'), //全局配置信息
  26. api: require('utils/api.js'), //接口文档
  27. db: require('utils/db.js'), //本地存储
  28. common: require('utils/common.js'),
  29. globalData: {
  30. userInfo: null,
  31. // navHeight: 0
  32. music: '',
  33. code: '', // 登录注册用
  34. user_id: 0,
  35. upload_image_url: 'https://ydxcx.mufengnet.com/api/up_files/upload_image'
  36. }
  37. })