加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.50 KB
一键复制 编辑 原始数据 按行查看 历史
haiyang 提交于 2020-09-28 11:00 . hy
<template>
<view>
</view>
</template>
<script>
import Vue from 'vue'
export default {
globalData: {
userName: '全局globale'
},
// 这里需要注意的是,如果我们需要在App.vue中使用userName
// 使用getApp().globalData.userName是不行,因为此时getApp()尚未生成
// 1. 非V3模式,可以通过this.$scope.globalData获取
// 2. V3模式,可以通过getApp({allowDefault: true}).globalData获取
// 详见uni-app文档:https://uniapp.dcloud.io/collocation/frame/window?id=getapp
data() {
return {}
},
onLaunch: function() {
uni.getSystemInfo({
success: function(e) {
// #ifndef MP
Vue.prototype.StatusBar = e.statusBarHeight;
if (e.platform == 'android') {
Vue.prototype.CustomBar = e.statusBarHeight + 50;
} else {
Vue.prototype.CustomBar = e.statusBarHeight + 45;
};
// #endif
// #ifdef MP
Vue.prototype.StatusBar = e.statusBarHeight;
let custom = uni.getMenuButtonBoundingClientRect();
Vue.prototype.Custom = custom;
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
// #endif
console.log(Vue.prototype.CustomBar, '导航高度', Vue.prototype.custom)
}
})
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import "uview-ui/index.scss";
@import 'static/css/reset.scss';
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化