第一次提交

This commit is contained in:
2023-08-11 12:42:04 +08:00
commit f8e6dfb082
322 changed files with 70415 additions and 0 deletions

41
App.vue Normal file
View File

@ -0,0 +1,41 @@
<!--本文件由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>