1 Star 0 Fork 189

潘浩 Peter/chatgpt微信小程序智能AI聊天免费开源

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
App.vue 1.42 KB
Copy Edit Raw Blame History
郑洪旭 authored 2023-04-21 22:25 . 更新最新的版本V4.0.1
<script>
import util from "@/util/util.js";
export default {
onLaunch: function() {
this.updateVersion()
util.getbaseConfig()
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
},
methods:{
updateVersion(){
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
})
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
showCancel:false,//隐藏取消按钮
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '已经有新版本了哟~',
content: '老版本不支持很多功能~,请您删除当前小程序,重新搜索打开!',
})
})
}
}
}
</script>
<style lang="scss">
@import "colorui/main.css";
@import "colorui/icon.css";
@import "static/css/index-app.css";
@import "uview-ui/index.scss";
@import "cl-uni/index.scss";
/* #ifdef H5 */
uni-page-head { display: none; }
/* #endif */
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Keypan2ee/chatgpt_wechat_font.git
git@gitee.com:Keypan2ee/chatgpt_wechat_font.git
Keypan2ee
chatgpt_wechat_font
chatgpt微信小程序智能AI聊天免费开源
master

Search