1 Star 0 Fork 143

ZaoAnTech/免费开源电子合同

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
Shawn 提交于 2022-11-25 16:19 . 初始化项目
<!--
* @Description:
* @LastEditTime: 2022-09-08 11:23:42
* @LastEditors: 刘仁秀
* @Author: 刘仁秀
* @Date: 2022-09-02 15:21:16
-->
<script>
export default {
onLaunch: function () {
// #ifndef H5
let menuButtonObject = uni.getMenuButtonBoundingClientRect();
this.globalData.menuButtonObject = menuButtonObject;
uni.getSystemInfo({
success: res => {
let statusBarHeight = res.statusBarHeight,
navHeight;
this.globalData.iStatusBarHeight = statusBarHeight;
navHeight = menuButtonObject.height + (menuButtonObject.top - statusBarHeight) * 2; //导航高度
this.globalData.navHeight = navHeight;
},
});
// #endif
},
onShow: function () {
console.log('App Show');
},
onHide: function () {
console.log('App Hide');
},
globalData: {
navHeight: 44, //导航栏的高度
menuButtonObject: 0, //胶囊参数
iStatusBarHeight: 0,
},
};
</script>
<style lang="scss">
/*每个页面公共css */
// @import '//at.alicdn.com/t/font_3296495_i5mdkgf1e4.css';
@import '@/common/common.scss';
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/zaoantech/mini-contract.git
git@gitee.com:zaoantech/mini-contract.git
zaoantech
mini-contract
免费开源电子合同
master

搜索帮助