1 Star 0 Fork 136

邓小明 / WordPress小程序前端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
/*
*
* 微慕小程序开源版
* author: jianbo
* organization: 微慕 www.minapper.com
* github: https://github.com/iamxjb/winxin-app-watch-life.net
* 技术支持微信号:iamxjb
* Copyright (c) 2017 微慕 https://www.minapper.com All rights reserved.
*
*/
import { colorUI } from './utils/uiconfig'
App({
colorUI,
onLaunch: function () {
this.updateManager();
// wx.setEnableDebug({
// enableDebug: true
// })
},
/*小程序主动更新
*/
updateManager() {
if (!wx.canIUse('getUpdateManager')) {
return false;
}
const updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
});
updateManager.onUpdateReady(function () {
wx.showModal({
title: '有新版本',
content: '新版本已经准备好,即将重启',
showCancel: false,
success(res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
});
});
updateManager.onUpdateFailed(function () {
wx.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
});
},
globalData: {
userInfo: null,
openid: '',
isGetUserInfo: false,
isGetOpenid: false
}
})
微信
1
https://gitee.com/dengxm2009/winxin-app-watch-life.net.git
git@gitee.com:dengxm2009/winxin-app-watch-life.net.git
dengxm2009
winxin-app-watch-life.net
WordPress小程序前端
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891