Files
FirstUI-hello/App.vue
2023-08-11 12:42:04 +08:00

41 lines
1.2 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--本文件由FirstUI授权予新疆天衡创新研究院有限公司手机号 1861 40 72 5 4 9身份证尾号5A07X5专用请尊重知识产权勿私下传播违者追究法律责任-->
<script>
export default {
onLaunch: function() {
console.log('App Launch')
//App2.6.5+ 仅iOS
// #ifndef APP-PLUS || H5
if (uni.canIUse('getUpdateManager')) {
const updateManager = uni.getUpdateManager();
updateManager.onCheckForUpdate((res) => {
if (res.hasUpdate) {
updateManager.onUpdateReady(() => {
this.fui.modal('更新提示', '发现新版本,为了获得更好的体验,建议立即更新', (res) => {
updateManager.applyUpdate();
});
});
updateManager.onUpdateFailed(() => {
this.fui.modal('更新失败', '新版本更新失败,请稍后再试或删除小程序重新搜索打开',
(res) => {});
});
}
});
}
// #endif
},
onShow: function() {
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style>
/*每个页面公共css */
@import './common/fui-app.css';
@import './components/firstui/fui-theme/fui-theme.css';
/*自定义字体css */
@import './static/icon/fui-custom-icon.css';
</style>