mirror of
https://gitee.com/java110/PropertyApp.git
synced 2026-02-24 05:46:09 +08:00
52 lines
1.2 KiB
Vue
52 lines
1.2 KiB
Vue
<script>
|
|
import Vue from 'vue'
|
|
import {hasSession} from './lib/java110/api/Java110SessionApi.js'
|
|
export default {
|
|
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-WEIXIN
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
let custom = wx.getMenuButtonBoundingClientRect();
|
|
Vue.prototype.Custom = custom;
|
|
Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
|
|
// #endif
|
|
|
|
// #ifdef MP-ALIPAY
|
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
|
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
|
|
// #endif
|
|
}
|
|
})
|
|
},
|
|
onShow: function() {
|
|
//判断用户是否登录
|
|
hasSession();
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
@import "lib/colorui/main.css";
|
|
@import "lib/colorui/icon.css";
|
|
/* #ifdef H5 */
|
|
uni-page-head {
|
|
display: none;
|
|
}
|
|
|
|
/* #endif */
|
|
</style>
|