<script>
	export default {
		onLaunch: function() {
			console.log('App Launch')
		},
		onShow: function() {
			console.log('App Show')
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

<style lang="scss">
	/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
	@import "uview-ui/index.scss";
	uni-page-head {
		display:none !important;
	}
	/*每个页面公共css */
	.wh100 {
		width: 100%;
		height: 100%;
	}
	
	.flexC {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.flexD {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.flex {
		display: flex;
	}
	
	.flexA {
		display: flex;
		align-items: center;
	}
	
	.fw700 {
		font-weight: 700;
	}
	
	.flexwrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	
	.flexcolum {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.serviceBtn {
		opacity: 0;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 120rpx;
		height: 120rpx;
	}
</style>
<style>
	
	/*每个页面公共css */
</style>