Commit ba5ff906 authored by qipeng's avatar qipeng

新增版本更新后小程序热启动机制

parent 4f60f64f
......@@ -39,6 +39,31 @@
uni.removeStorageSync('alipayQrCode')
}
//#endif
/* 版本自动更新代码 */
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
console.log('是否有更新:' + res.hasUpdate) // 请求完新版本信息的回调 true说明有更新
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新检测', // 此处可自定义提示标题
content: '检测到新版本,是否重启小程序?', // 此处可自定义提示消息内容
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '更新提示',
content: '新版本下载失败',
showCancel: false
})
})
},
onShow: function() {
......
......@@ -67,6 +67,13 @@
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/my/order/productList/productList",
"style" : {
"navigationBarTitleText" : "我的订单",
"enablePullDownRefresh" : false
}
},
{
"path" : "pages/combination/sourceCombiChoose/sourceCombiChoose",
"style" : {
......
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment