加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
WDG 提交于 2021-12-02 13:44 . 黄历运势模块
<script>
export default {
onLaunch: function() {
if (wx.canIUse('getUpdateManager')) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
if (res.hasUpdate) {
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
showCancel:false,
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
wx.showModal({
title: '已经有新版本了哟~',
content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~'
})
})
}
})
} else {
wx.showModal({
title: '提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
})
}
},
onShow: function() {
// let pages = getCurrentPages();
// if(pages['0'].route != '/pages/index/index'){
// wx.switchTab({
// url:'/pages/index/index'
// })
// }
},
onHide: function() {
}
}
</script>
<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
// @import "@/uni_modules/uview-ui/index.scss";
page{
background-color: #f4f4f4;
color: #555;
}
.response{
width: 100%;
}
.content{
padding-bottom: 20rpx;
}
.noMore{
text-align: center;
margin: 20rpx;
font-size: 28rpx;
color: #999999;
}
/**
* 京东标识
*/
.jdlogo{
background-color: #ED1941;
padding: 0 8rpx;
color: #fff;
border-radius: 10rpx;
font-size: 22rpx;
}
.getMore{
text-align: center;
font-size: 32rpx;
color: #888;
margin: 20rpx;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化