App.vue 1.4 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
			initApp();
L
123  
linju 已提交
11 12 13 14
			//预加载设置页面
			uni.preloadPage({
				url: "/pages/ucenter/settings/settings",
				complete:e=>{
L
23  
linju 已提交
15
					// console.log(e);
L
123  
linju 已提交
16 17
				}
			});
L
123  
linju 已提交
18
			// #ifdef APP-PLUS
L
123  
linju 已提交
19
			//预加载一键登录
L
123  
linju 已提交
20
				plus.oauth.getServices(oauthServices=>{
L
23  
linju 已提交
21
					// console.log(oauthServices);
L
123  
linju 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35
					oauthServices.forEach(({_id},item)=>{
						if(_id=='provider'){
							uni.preLogin({
								provider:item,
								complete:e=>{
									console.log(e);
								}
							})
						}
					})
					uni.preloadPage({url: "/uni_modules/uni-login-page/pages/index/index"});
				},err=>{
					console.error('获取服务供应商失败:' + JSON.stringify(err));
				})
L
123  
linju 已提交
36
			// #endif
芊里 已提交
37 38 39 40 41 42 43 44 45 46 47 48
		},
		onShow: function() {
			console.log('App Show')
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

<style>
	/*每个页面公共css */
芊里 已提交
49 50 51 52 53 54 55 56 57 58
	.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 已提交
59 60 61 62 63
	/* #ifndef APP-NVUE */
	view,scroll-view,text,
	image,switch,navigator,icons {
		display: flex;
		box-sizing: border-box;
芊里 已提交
64
		flex-direction: column;
L
213  
linju 已提交
65 66 67 68 69
	}
	scroll-view{
		-webkit-overflow-scrolling: touch;
	}
	/* #endif */
芊里 已提交
70
</style>