App.vue 655 Bytes
<script>
	import store from '@/store';
	
	export default {
		//设置全局变量,解绑时从这里取
		globalData: {
			openId: ''
		},
		onLaunch(e) {
			// #ifdef APP-PLUS
			uni.reLaunch({
				url: '/pages/index/splash'
			})
			// #endif
		},
		onShow() {},
		onHide() {}
	};
</script>

<style lang="scss">
	@import '@/uni_modules/uview-ui/index.scss';
	@import './style/iconfont.scss';
	@import './style/common.scss';

	page {
		background: #ffffff;
	}

	::-webkit-scrollbar {
		display: none;
		width: 0 !important;
		height: 0 !important;
		-webkit-appearance: none;
		background: transparent;
	}
</style>