Browse Source

添加版本更新提示

master
xuwenbo 4 years ago
parent
commit
f449f9cf58
  1. 39
      App.vue

39
App.vue

@ -1,8 +1,35 @@
<script> <script>
import Vue from 'vue' import Vue from 'vue'
export default { export default {
onLaunch: function () { onLaunch: function() {
console.log("App Launch"); // debugger
const updateManager = uni.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
//
console.log(res.hasUpdate)
})
//
updateManager.onUpdateReady(function () {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
//
updateManager.applyUpdate()
}
}
})
})
//
updateManager.onUpdateFailed(function (res) {
//
uni.showModal({
title: '已经有新版本了哟~',
content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~',
})
})
}, },
onShow: function () { onShow: function () {
console.log("App Show"); console.log("App Show");
@ -43,17 +70,17 @@ export default {
}); });
}); });
}, },
// //
async autoLogin(data) { async autoLogin(data) {
}, },
}, },
}; };
</script> </script>
<style lang="less"> <style lang="less">
/*每个页面公共css */ /*每个页面公共css */
@import "animate.css"; @import "animate.css";

Loading…
Cancel
Save