|
发表于 2015-7-6 16:54:28
|
显示全部楼层
跟了一下这个是js文件中写的
runtime\UIServer\WEB-INF\lib\resources.jar\base\base.js
文件的最后加上
- justep.Portal.sessionTimeout = function(){
- window.onerror = function(){return false;};
- window.pageErrorHandler = function(){return false;};
- if(justep.Browser.isInApp){
- if (confirm("服务器连接超时, 是否重新登录!")){
- justep.getJustepApp().portal.refresh();
- }
- }else{
- if(this._isJPolite()){
- if (confirm("服务器连接超时, 切换到登录页面!")){
- justep.Portal.logout();
- }
- }else if (this._isMobile()) {//mobile
- if (confirm("服务器连接超时,切换到登录页面!")) {
- top.justep.mobile.Portal.logout(true);
- }
- }else if(this._isPortal2()){
- if (confirm("服务器连接超时, 切换到登录页面!")){
- justep.Portal.logout();
- }
- }else{
- if (confirm("服务器连接超时, 是否关闭页面!")){
- justep.Portal.closeWindow();
- }
- }
- }
- }
复制代码
可以修改里面的提示信息 |
|