appInit.js 797 字节
Newer Older
芊里 已提交
1 2 3 4 5 6 7 8
import checkUpdate from '@/uni_modules/uni-upgrade-center-app/utils/check-update';
export default function (){
	
	// 初始化appVersion
	initAppVersion();
	
	// 检查更新
	checkUpdate();
芊里 已提交
9 10
	
	keepScreenOn();
芊里 已提交
11 12
}

芊里 已提交
13 14 15 16 17 18 19 20 21 22 23 24 25 26
/**
 * 保持屏幕常亮
 */
function keepScreenOn(){
	//#ifdef APP-PLUS
	// 保持屏幕常亮
	uni.setKeepScreenOn({
	    keepScreenOn: true
	});
	//#endif
}
/**
 * // 初始化appVersion
 */
芊里 已提交
27
function initAppVersion(){
L
123  
linju 已提交
28
	// #ifdef APP-NVUE
芊里 已提交
29 30 31 32 33 34 35 36 37 38 39
	let appid = plus.runtime.appid;
	plus.runtime.getProperty(appid ,(wgtInfo) => {
		 wgtInfo.version 
		 let appVersion = plus.runtime;
		 getApp({allowDefault: true}).appVersion = {
			 appid,
			 version:appVersion,
			 wgtVersion:wgtInfo,
			 finall:appVersion.versionCode > wgtInfo.versionCode ? appVersion : wgtInfo
		 }
	});
L
123  
linju 已提交
40
	// #endif
芊里 已提交
41
}