|
@@ -25,13 +25,30 @@
|
|
|
fillimg: 'images/tab41.png'
|
|
|
}
|
|
|
];
|
|
|
-
|
|
|
+
|
|
|
+ //APP检查更新
|
|
|
+ function checkAppUpdate() {
|
|
|
+ var updateUrl = "http://upgrade.app.rltest.cn/czapp_apk/version.xml";
|
|
|
+ console.log('********* checkAppUpdate start ************');
|
|
|
+ if(window.AppUpdate){
|
|
|
+ window.AppUpdate.checkAppUpdate(onSuccess, onFail, updateUrl);
|
|
|
+ }
|
|
|
+
|
|
|
+ function onFail() {
|
|
|
+ console.log('fail', JSON.stringify(arguments), arguments);
|
|
|
+ }
|
|
|
+ function onSuccess() {
|
|
|
+ console.log('success', JSON.stringify(arguments), arguments);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
renlian.init(function () {
|
|
|
// 处理 Cordova 暂停并恢复事件
|
|
|
document.addEventListener('pause', onPause.bind(this), false);
|
|
|
document.addEventListener('resume', onResume.bind(this), false);
|
|
|
renlian.tab.init(tabdata);
|
|
|
-
|
|
|
+ //APP检查更新
|
|
|
+ checkAppUpdate();
|
|
|
var logininfo = renlian.storage.get('logininfo');
|
|
|
if (logininfo) {// 有登录的token
|
|
|
renlian.nav.go({ path: 'amap', title: '地图', type: 'right', isBack: false });
|