App.vue 1.5 KB
Newer Older
芊里 已提交
1
<script>
芊里 已提交
2
	import initApp from '@/common/appInit.js';
DCloud_JSON's avatar
DCloud_JSON 已提交
3
	import checkIsAgree from '@/uni_modules/uni-agree/utils/uni-agree.js';
芊里 已提交
4 5
	export default {
		globalData: {
芊里 已提交
6 7
			searchText: '',
			appVersion:{}
芊里 已提交
8 9 10
		},
		onLaunch: function() {
			console.log('App Launch')
L
123  
linju 已提交
11
			initApp();
DCloud_JSON's avatar
DCloud_JSON 已提交
12
			checkIsAgree();
芊里 已提交
13 14
			
			//#ifdef APP-NVUE || H5
L
123  
linju 已提交
15 16 17 18
			//预加载设置页面
			uni.preloadPage({
				url: "/pages/ucenter/settings/settings",
				complete:e=>{
L
23  
linju 已提交
19
					// console.log(e);
L
123  
linju 已提交
20 21
				}
			});
芊里 已提交
22
			//#endif
L
123  
linju 已提交
23
			// #ifdef APP-PLUS
L
123  
linju 已提交
24
			//预加载一键登录
L
123  
linju 已提交
25
				plus.oauth.getServices(oauthServices=>{
L
23  
linju 已提交
26
					// console.log(oauthServices);
L
123  
linju 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40
					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 已提交
41
			// #endif
芊里 已提交
42 43 44 45 46 47 48 49 50 51 52 53
		},
		onShow: function() {
			console.log('App Show')
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

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