App.vue 1.5 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();
芊里 已提交
11 12
			
			//#ifdef APP-NVUE || H5
L
123  
linju 已提交
13 14 15 16
			//预加载设置页面
			uni.preloadPage({
				url: "/pages/ucenter/settings/settings",
				complete:e=>{
L
23  
linju 已提交
17
					// console.log(e);
L
123  
linju 已提交
18 19
				}
			});
芊里 已提交
20
			//#endif
L
123  
linju 已提交
21
			// #ifdef APP-PLUS
L
123  
linju 已提交
22
			//预加载一键登录
L
123  
linju 已提交
23
				plus.oauth.getServices(oauthServices=>{
L
23  
linju 已提交
24
					// console.log(oauthServices);
L
123  
linju 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38
					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 已提交
39
			// #endif
芊里 已提交
40 41 42 43 44 45 46 47 48 49 50 51
		},
		onShow: function() {
			console.log('App Show')
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

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