diff --git a/src/main/webapp/WEB-INF/views/dashboard/dashBoardIndex.jsp b/src/main/webapp/WEB-INF/views/dashboard/dashBoardIndex.jsp index b8507b7ab..da48d31cf 100644 --- a/src/main/webapp/WEB-INF/views/dashboard/dashBoardIndex.jsp +++ b/src/main/webapp/WEB-INF/views/dashboard/dashBoardIndex.jsp @@ -706,7 +706,7 @@ function systemList(){ $(rs).each(function(i, itemObj) { var os=""; - if(itemObj.osType!=null){ + if(typeof(itemObj.osType)!="undefined"&&itemObj.osType!=null){ os=(itemObj.osType).toString(); if(os.length>18){ os=os.substring(0,18); @@ -822,7 +822,7 @@ function browserList() { if(n>0){ $(rs).each(function(i, itemObj) { var bs=""; - if(itemObj.bsType!=null){ + if(typeof(itemObj.bsType)!="undefined"&&itemObj.bsType!=null){ bs=(itemObj.bsType).toString(); if(bs.length>18){ bs=bs.substring(0,18); @@ -890,7 +890,7 @@ function websiteList() { if(n>0){ $(rs).each(function(i, itemObj) { var web=""; - if(itemObj.websiteService!=null){ + if(typeof(itemObj.websiteService)!="undefined"&&itemObj.websiteService!=null){ web=(itemObj.websiteService).toString(); if(web.length>18){ web=web.substring(0,18); diff --git a/src/main/webapp/WEB-INF/views/dashboard/trafficIpActiveList.jsp b/src/main/webapp/WEB-INF/views/dashboard/trafficIpActiveList.jsp index 8cae16ef3..4b1f137c2 100644 --- a/src/main/webapp/WEB-INF/views/dashboard/trafficIpActiveList.jsp +++ b/src/main/webapp/WEB-INF/views/dashboard/trafficIpActiveList.jsp @@ -11,8 +11,8 @@

@@ -71,6 +71,8 @@

+ + <%-- --%>