|

楼主 |
发表于 2016-8-4 10:57:15
|
显示全部楼层
define(function(require) {
var $ = require("jquery");
var justep = require("$UI/system/lib/justep");
var ShellImpl = require('$UI/system/lib/portal/shellImpl');
require("$UI/system/lib/cordova/cordova");
require("cordova!cordova-plugin-network-information");
function checkConnection() {
var networkState = navigator.connection.type;
var states = {};
states[Connection.UNKNOWN] = 'Unknown connection';
states[Connection.ETHERNET] = 'Ethernet connection';
states[Connection.WIFI] = 'WiFi connection';
states[Connection.CELL_2G] = 'Cell 2G connection';
states[Connection.CELL_3G] = 'Cell 3G connection';
states[Connection.CELL_4G] = 'Cell 4G connection';
states[Connection.CELL] = 'Cell generic connection';
states[Connection.NONE] = 'No network connection';
if (states[networkState] === 'No network connection' || states[networkState] === 'Unknown connection') {
return false;
} else {
return true;
}
}
var Model = function() {
this.callParent();
if (!checkConnection()) {
justep.Util.hint("网络异常,请检查网络!", {
"type" : "warning",
"delay" : 3000
});
$(this.comp('windowContainer1')).css('display', 'none');
$(this.comp('image1')).css('display', 'block');
} else {
var shellImpl = new ShellImpl(this, {
"contentsXid" : "pages",
"pageMappings" : {
"main" : {
url : require.toUrl('$UI/tianjiao/main.w')
}
}
})
}
};
return Model;
}); |
|