From 2795a8082ef9f345c6dbc3e37a92da654266a954 Mon Sep 17 00:00:00 2001 From: zhanghongqing Date: Tue, 15 Jan 2019 20:27:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E9=87=8F=E7=BB=9F=E8=AE=A1app?= =?UTF-8?q?=E8=B6=8B=E5=8A=BF=E5=9B=BE=E5=8E=86=E5=8F=B2=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E5=88=87=E6=8D=A2=E5=8D=95=E4=BD=8D=E6=97=B6?= =?UTF-8?q?=E5=A2=9E=E5=8A=A0onloading=E9=81=AE=E7=BD=A9=E5=B1=82=EF=BC=8C?= =?UTF-8?q?=E5=88=86=E9=A1=B5=E7=AD=89=E4=BA=8E5=E9=A1=B5=E6=97=B6?= =?UTF-8?q?=E5=8E=BB=E6=8E=89=E5=B0=BE=E9=A1=B5=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/views/dashboard/trafficAppTrendList.jsp | 1 + src/main/webapp/static/pages/scripts/jquery.pagination.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/views/dashboard/trafficAppTrendList.jsp b/src/main/webapp/WEB-INF/views/dashboard/trafficAppTrendList.jsp index f04fb06a1..e9f6622b4 100644 --- a/src/main/webapp/WEB-INF/views/dashboard/trafficAppTrendList.jsp +++ b/src/main/webapp/WEB-INF/views/dashboard/trafficAppTrendList.jsp @@ -223,6 +223,7 @@ }); // 改变排序字段 function changeOrderby(searchQuota) { + loading(); appTop100List($("#beginDate").val(),$("#endDate").val(),$("#appType").val(),$("#entranceId").val(),searchQuota); } function searchList1() { diff --git a/src/main/webapp/static/pages/scripts/jquery.pagination.js b/src/main/webapp/static/pages/scripts/jquery.pagination.js index f4ebc5ab8..b4e9aa7a6 100644 --- a/src/main/webapp/static/pages/scripts/jquery.pagination.js +++ b/src/main/webapp/static/pages/scripts/jquery.pagination.js @@ -95,7 +95,7 @@ } } } - if(current + opts.count < pageCount && current >= 1 && pageCount > opts.count){ + if(current + opts.count < pageCount && current >= 1 && pageCount > opts.count && end!=5){// 先暂时定5 防止5页的时候显示 var end = opts.coping && opts.endPage ? opts.endPage : pageCount; html += opts.coping ? '...'+end+'' : ''; }