代码拉取完成,页面将自动刷新
<style lang="scss">
@import "uview-ui/index.scss";
</style>
<script>
const updateManager = uni.getUpdateManager();
import {
base
} from './api/index';
export default {
onLaunch: function() {
uni.getSystemInfo({
success: res => {
//导航高度
this.globalData.navHeight = res.statusBarHeight;
},
fail(err) {
console.log(err);
}
})
// 请求meedu的系统配置
// base.config().then(res => {
// this.globalData.user_protocol = res.user_protocol;
// this.globalData.user_private_protocol = res.user_private_protocol;
// this.globalData.aboutus = res.aboutus;
// this.globalData.player_cover = res.player.cover;
// this.globalData.logo = res.logo;
// })
// #ifdef MP
// 小程序session flash
uni.login({
success: (res) => {
base.wxLogin({
code: res.code
}).then(res => {
uni.setStorageSync('openid', res.openid);
})
}
})
// #endif
//检查版本更新
// #ifdef MP
updateManager.onCheckForUpdate(function(res) {
// 请求完新版本信息的回调
});
updateManager.onUpdateReady(function(res) {
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
}
});
});
updateManager.onUpdateFailed(function(res) {
// 新的版本下载失败
});
// #endif
// uni.setTabBarItem({
// index: 0,
// text: '日程表',
// iconPath: '/path/to/iconPath',
// selectedIconPath: '/path/to/selectedIconPath'
// })
},
onShow: function() {
},
onHide: function() {
},
globalData: {
AppName: '',
Version: 'v1.0',
user_protocol: '',
user_private_protocol: '',
aboutus: '',
player_cover: '',
navHeight: 0,
logo: ''
}
}
</script>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。