2 Star 5 Fork 2

道法合一(qq:1126919503)/推拿按摩-幸福上门

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
道法合一(qq:1126919503) 提交于 2021-11-19 11:58 . tijiao
<script>
export default {
onLaunch: function() {
this.checkUpdateVersion()
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
methods:{
// 版本审计
checkUpdateVersion(){
const updateManager = uni.getUpdateManager();
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
if (res.hasUpdate) {
updateManager.onUpdateReady(function(res2) {
uni.showModal({
title: '更新提示',
content: '发现新版本,是否重启应用?',
success(res2) {
if (res2.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
}
});
updateManager.onUpdateFailed(function(res) {
// 新的版本下载失败
uni.showModal({
title: '提示',
content: '检查到有新版本,但下载失败,请检查网络设置',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
},
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
.cell-hover-class {
background-color: rgb(235, 237, 238);
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/freesytle/lover-door.git
[email protected]:freesytle/lover-door.git
freesytle
lover-door
推拿按摩-幸福上门
master

搜索帮助