3 Star 0 Fork 0

daniel_lu/huke

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.93 KB
一键复制 编辑 原始数据 按行查看 历史
danielwithss 提交于 2021-02-15 21:13 . 框架调整
<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>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/danielwithss/huke.git
git@gitee.com:danielwithss/huke.git
danielwithss
huke
huke
master

搜索帮助