App.vue 607 Bytes
<script>
	export default {
		onLaunch: function () {
			uni.setStorage({
				key:'statusBarH',
				data:Number(window.location.href.split('=')[1])
			})
		},
		onShow: function () {
			console.log('App Show')
		},
		onHide: function () {
			console.log('App Hide')
		},
		methods: {
		}
	}
</script>
<style>
	.picker-title{
		background: #0069FF!important;
	}
	body{
		font-size: 25.36upx;
	}
	.littleTit{
		overflow:hidden;
		text-overflow:ellipsis;
		-o-text-overflow:ellipsis;
		-webkit-text-overflow:ellipsis;
		-moz-text-overflow:ellipsis;
		white-space:nowrap;
	}
	/*每个页面公共css */
</style>