3 Star 26 Fork 9

阿志lucky/陪诊小程序uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
阿志lucky 提交于 2023-02-06 11:27 . 初始化
<script>
import Vue from 'vue';
// import {
// mapGetters,
// mapActions
// } from "vuex";
export default {
onLaunch: function() {
console.log('App Launch');
uni.getSystemInfo({
success: e => {
// 状态栏高度px
Vue.prototype.statusHeight = e.statusBarHeight;
Vue.prototype.screenHeight = e.screenHeight;
Vue.prototype.screenWidth = e.screenWidth;
Vue.prototype.platform = e.platform;
Vue.prototype.widthRatio = e.screenWidth / 750;
// #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-WEIXIN
Vue.prototype.StatusBar = e.statusBarHeight;
let custom = wx.getMenuButtonBoundingClientRect();
Vue.prototype.Custom = custom;
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight + 4;
// #endif
// #ifdef MP-ALIPAY
Vue.prototype.StatusBar = e.statusBarHeight;
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
// #endif
}
});
this.$store.commit('SET_CUR_ADDRESS', uni.getStorageSync('cityCode'))
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
console.log('App Hide');
}
};
</script>
<style lang="scss">
// 全局CSS样式在这里引入
@import "@/uni_modules/uview-ui/index.scss";
@import 'static/style/index.scss';
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hkz001/companion-app.git
git@gitee.com:hkz001/companion-app.git
hkz001
companion-app
陪诊小程序uniapp
master

搜索帮助