console.log('版本:' + __wxConfig.envVersion);
const updateManager = wx.getUpdateManager()
if (updateManager) {
updateManager.onCheckForUpdate(function (res) {
console.log('hasUpdate:' + res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function (err) {
console.log(err)
})
}