From c90d2e7cc27f800f6989a0c63b5412545c4c4344 Mon Sep 17 00:00:00 2001 From: zhanghongqing Date: Thu, 15 Nov 2018 16:19:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B4=BB=E8=B7=83ip=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E6=A0=B7=E5=BC=8F=EF=BC=8C=E5=AF=BC=E5=87=BA=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E6=94=B9=E4=B8=BAjs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/WEB-INF/views/dashboard/dashBoardIndex.jsp | 6 +++--- .../WEB-INF/views/dashboard/trafficIpActiveList.jsp | 8 ++++---- .../WEB-INF/views/dashboard/trafficUserBehavior.jsp | 7 +++++-- src/main/webapp/static/pages/css/data_text.css | 2 +- 4 files changed, 13 insertions(+), 10 deletions(-) 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 @@

+ + <%-- --%>