<script>
	export default {
		onLaunch: function() {
			// #ifdef MP-WEIXIN
			let menuButtonInfo = uni.getMenuButtonBoundingClientRect().top
			this.$lib.$store.commit('setMenuButtonInfo',menuButtonInfo)
			// #endif
			console.log('App Launch')
		},
		onShow: function() {
			console.log('App Show')
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

<style>
	/*每个页面公共css */
    @import "./static/font/iconfont.css";
	/*占位符*/
	.lz-status_bar {
		height: var(--status-bar-height);
		width: 100%;
		background-color: #fff;
	}
	
	.lz-top_view {
		height: var(--status-bar-height);
		width: 100%;
		position: fixed;
		background-color: #fff;
		top: 0;
		z-index: 999;
	}
	/*头部*/
		.index-head{
		     background: #fff;
		     top: var(--status-bar-height);
		     z-index: 100;
			 height: 32px;
			 padding-bottom: 6px;
		 }
		 .index-head-top{
		     display: flex;
		     font-size: 16px;
		     color: #000;
		     align-items: center;
		     width: 92%;
		     margin: 0 auto;
			 line-height: 40px;
		 }
		 .index-head-top .index-head-l {
			 width: 24px;
			 display: flex;align-items: center;
			 padding-top: 0px;
		}
		 .index-head-l .iconfont {
		     font-size: 21px;
			 transform: rotate(180deg);
			 margin-right: 7px;
		 }
		 .index-head-top .index-head-m{width: 60%;text-align: left;font-size: 16px;}
</style>