App.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <script>
  2. export default {
  3. globalData: {
  4. statusBarHeight: 0, // 状态导航栏高度
  5. navHeight: 44, // 总体高度
  6. navigationBarHeight: 0, // 导航栏高度(标题栏高度)
  7. },
  8. onLaunch: function() {
  9. this.update();
  10. // console.log('App Launch')
  11. // 状态栏高度
  12. this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight
  13. // #ifdef MP-WEIXIN
  14. // 获取微信胶囊的位置信息 width,height,top,right,left,bottom
  15. const custom = wx.getMenuButtonBoundingClientRect()
  16. // console.log(custom)
  17. // 导航栏高度(标题栏高度) = 胶囊高度 + (顶部距离 - 状态栏高度) * 2
  18. this.globalData.navigationBarHeight = custom.height + (custom.top - this.globalData.statusBarHeight) * 2
  19. // console.log("导航栏高度:"+this.globalData.navigationBarHeight)
  20. // 总体高度 = 状态栏高度 + 导航栏高度
  21. this.globalData.navHeight = this.globalData.navigationBarHeight + this.globalData.statusBarHeight
  22. // #endif
  23. // console.log('this.globalData==========',this.globalData)
  24. // this.$wxApi.config()
  25. },
  26. onShow: function() {
  27. // console.log('App Show')
  28. },
  29. onHide: function() {
  30. // console.log('App Hide')
  31. // 删除分销信息
  32. // const sceneData = uni.getStorageSync('scene');
  33. // if (sceneData && sceneData.timestamp) {
  34. // const currentTime = new Date().getTime();
  35. // if (currentTime - sceneData.timestamp > 5 * 60 * 1000) { // 超过5分钟
  36. // }
  37. // }
  38. uni.removeStorage({
  39. key:'retailId',
  40. success: (e) => {
  41. console.log('App Hide removeStorage retailId success',e);
  42. },
  43. fail: (e) => {
  44. console.log('App Hide removeStorage retailId fail',e);
  45. }
  46. });
  47. uni.removeStorage({
  48. key:'scene',
  49. success: (e) => {
  50. console.log('App Hide removeStorage scene success',e);
  51. },
  52. fail: (e) => {
  53. console.log('App Hide removeStorage scene fail',e);
  54. }
  55. });
  56. // 删除分销信息
  57. },
  58. methods:{
  59. update() {
  60. // 获取小程序更新机制兼容
  61. if (uni.canIUse('getUpdateManager')) {
  62. const updateManager = uni.getUpdateManager()
  63. //1. 检查小程序是否有新版本发布
  64. updateManager.onCheckForUpdate((res) => {
  65. // 请求完新版本信息的回调
  66. if (res.hasUpdate) {
  67. //检测到新版本,需要更新,给出提示
  68. uni.showModal({
  69. title: '更新提示',
  70. content: '检测到新版本,是否下载新版本并重启小程序?',
  71. success: (res) => {
  72. if (res.confirm) {
  73. //2. 用户确定下载更新小程序,小程序下载及更新静默进行
  74. this.downLoadUpdate(updateManager)
  75. } else if (res.cancel) {
  76. //用户点击取消按钮的处理,如果需要强制更新,则给出二次弹窗,如果不需要,则这里的代码都可以删掉了
  77. uni.showModal({
  78. title: '温馨提示~',
  79. content: '本次版本更新涉及到新的功能添加,旧版本无法正常访问的哦~',
  80. showCancel: false, //隐藏取消按钮
  81. confirmText: "确定更新", //只保留确定更新按钮
  82. success: (res) => {
  83. if (res.confirm) {
  84. //下载新版本,并重新应用
  85. this.downLoadUpdate(updateManager)
  86. }
  87. }
  88. })
  89. }
  90. }
  91. })
  92. }
  93. })
  94. } else {
  95. // 如果希望用户在最新版本的客户端上体验您的小程序,可以这样子提示
  96. uni.showModal({
  97. title: '提示',
  98. content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
  99. })
  100. }
  101. },
  102. /**
  103. * 下载小程序新版本并重启应用
  104. */
  105. downLoadUpdate(updateManager) {
  106. uni.showLoading();
  107. //静默下载更新小程序新版本
  108. updateManager.onUpdateReady(() => {
  109. uni.hideLoading()
  110. //新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  111. updateManager.applyUpdate()
  112. })
  113. updateManager.onUpdateFailed(() => {
  114. // 新的版本下载失败
  115. uni.showModal({
  116. title: '已经有新版本了哟~',
  117. content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~',
  118. })
  119. })
  120. },
  121. }
  122. }
  123. </script>
  124. <style lang="scss">
  125. /*每个页面公共css */
  126. @import "@/uni_modules/uview-ui/index.scss";
  127. @import "@/static/css/common.scss";
  128. </style>