App.vue 647 B

123456789101112131415161718192021222324252627282930
  1. <script>
  2. export default {
  3. onLaunch: function() {
  4. // #ifndef H5 || APP-NVUE || APP-PLUS || APP-PLUS-NVUE
  5. const updateManager = uni.getUpdateManager();
  6. updateManager.onUpdateReady(function(res) {
  7. uni.showModal({
  8. title: '更新提示',
  9. content: '新版本已经准备好,是否重启应用?',
  10. success(res) {
  11. if (res.confirm) {
  12. updateManager.applyUpdate();
  13. }
  14. }
  15. });
  16. });
  17. // #endif
  18. },
  19. onShow: function() {
  20. console.log('App Show')
  21. },
  22. onHide: function() {
  23. console.log('App Hide')
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. @import './common/common.scss';
  29. </style>