appInit.js 621 字节
Newer Older
芊里 已提交
1 2 3 4 5 6 7
import checkUpdate from '@/uni_modules/uni-upgrade-center-app/utils/check-update';
export default function (){
	
	// 初始化appVersion
	initAppVersion();
	
	// 检查更新
L
123  
linju 已提交
8
	// checkUpdate();
芊里 已提交
9 10 11 12 13
	
}
/**
 * // 初始化appVersion
 */
芊里 已提交
14
function initAppVersion(){
L
12  
linju 已提交
15
	// #ifdef APP-PLUS
芊里 已提交
16 17 18 19 20 21 22 23 24 25 26
	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 已提交
27
	// #endif
芊里 已提交
28
}