App.vue 1.5 KB
Newer Older
1
<script>
DCloud_JSON's avatar
DCloud_JSON 已提交
2 3
	import initApp from '@/common/appInit.js';
	import checkIsAgree from '@/uni_modules/uni-agree/utils/uni-agree.js';
4 5 6
	export default {
		globalData: {
			searchText: '',
DCloud_JSON's avatar
DCloud_JSON 已提交
7
			appVersion: {},
DCloud_JSON's avatar
DCloud_JSON 已提交
8
			config:{}
9 10
		},
		onLaunch: function() {
DCloud_JSON's avatar
DCloud_JSON 已提交
11 12 13
			console.log('App Launch')
			initApp();
			// #ifdef APP-PLUS
14 15 16 17
			//checkIsAgree(); APP端暂时先用原生默认生成的。目前,自定义方式启动vue界面时,原生层已经请求了部分权限这并不符合国家的法规
			// #endif
			
			// #ifdef H5
18
				// checkIsAgree(); 默认不开启。目前全球,仅欧盟国家有网页端同意隐私权限的需要。如果需要
19
			// #endif
20

21
			// #ifdef APP-PLUS
22 23 24 25 26 27 28 29 30 31 32 33 34
			//idfa有需要的用户在应用首次启动时自己获取存储到storage中
			//https://ask.dcloud.net.cn/article/36107
			/*if(~plus.storage.getItem('idfa')){
				plus.device.getInfo({//需要勾选IDFA
					success:function(e){  
						console.log('idfa =  '+JSON.stringify(e.idfa));  
					},
					fail:function(e){
						console.log('getDeviceInfo failed: '+JSON.stringify(e));  
					}  
				});
			}*/
			// #endif
35 36
		},
		onShow: function() {
37
			console.log('App Show')
38 39 40 41 42 43 44 45 46
		},
		onHide: function() {
			console.log('App Hide')
		}
	}
</script>

<style>
	/*每个页面公共css */
DCloud_JSON's avatar
DCloud_JSON 已提交
47
/* #ifndef APP-NVUE */
48 49 50 51 52 53 54 55 56 57 58 59 60 61
	view,
	scroll-view,
	text,
	image,
	switch,
	navigator,
	icons {
		display: flex;
		box-sizing: border-box;
		flex-direction: column;
	}
	scroll-view {
		-webkit-overflow-scrolling: touch;
	}
DCloud_JSON's avatar
DCloud_JSON 已提交
62 63
/* #endif */
</style>