App.vue 1.3 KB
Newer Older
芊里 已提交
1
<script>
芊里 已提交
2
	import initApp from '@/common/appInit.js';
芊里 已提交
3 4
	export default {
		globalData: {
芊里 已提交
5 6
			searchText: '',
			appVersion:{}
芊里 已提交
7 8 9
		},
		onLaunch: function() {
			console.log('App Launch')
L
123  
linju 已提交
10 11
			initApp();
			// #ifdef APP-PLUS
L
123  
linju 已提交
12 13 14 15 16 17 18 19 20 21 22 23
			//预加载一键登录
				// plus.oauth.getServices(oauthServices=>{
				// 	oauthServices.forEach(({_id},item)=>{
				// 		if(_id=='provider'){
				// 			uni.preLogin({
				// 				provider:item,
				// 				complete:e=>{
				// 					console.log(e);
				// 				}
				// 			})
				// 		}
				// 	})
L
123  
linju 已提交
24
					
L
123  
linju 已提交
25 26 27 28
				// 	uni.preloadPage({url: "/uni_modules/uni-login-page/pages/index/index"});
				// },err=>{
				// 	console.error('获取服务供应商失败:' + JSON.stringify(err));
				// })
L
123  
linju 已提交
29
			// #endif
芊里 已提交
30 31 32 33 34 35 36 37 38 39 40 41
		},
		onShow: function() {
			console.log('App Show')
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

<style>
	/*每个页面公共css */
芊里 已提交
42 43 44 45 46 47 48 49 50 51
	.border-test{
		/* #ifdef APP-NVUE */
		border-width: 1rpx;
		border-color: #DD524D;
		/* #endif */
		/* #ifndef APP-NVUE */
		border: 1px solid #DD524D;
		box-sizing: border-box;
		/* #endif */
	}
L
213  
linju 已提交
52 53 54 55 56
	/* #ifndef APP-NVUE */
	view,scroll-view,text,
	image,switch,navigator,icons {
		display: flex;
		box-sizing: border-box;
芊里 已提交
57
		flex-direction: column;
L
213  
linju 已提交
58 59 60 61 62
	}
	scroll-view{
		-webkit-overflow-scrolling: touch;
	}
	/* #endif */
芊里 已提交
63
</style>