<script>
|
import Vue from 'vue'
|
export default {
|
globalData: {
|
token: "aaa"
|
},
|
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 + 4;
|
// #endif
|
|
// #ifdef MP-ALIPAY
|
Vue.prototype.StatusBar = e.statusBarHeight;
|
Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
|
// #endif
|
}
|
});
|
console.log('App Launch')
|
},
|
onShow: function() {
|
//console.log('App Show')
|
|
},
|
onHide: function() {
|
//console.log('App Hide')
|
},
|
methods:{
|
|
|
},
|
mounted() {
|
var i = 0;
|
// setInterval(function() {
|
// i++
|
// if (i % 2 == 0) {
|
// uni.showTabBarRedDot({
|
// index: 1
|
// })
|
// } else {
|
// uni.hideTabBarRedDot({
|
// index: 1
|
// })
|
// }
|
// }, 3000)
|
|
|
|
}
|
}
|
</script>
|
|
<style lang="scss">
|
/*每个页面公共css */
|
@import "colorui/main.css";
|
@import "colorui/icon.css";
|
@import "uview-ui/index.scss";
|
</style>
|