实时报表Excel导出调整为后台导出

This commit is contained in:
leijun
2019-01-03 18:44:13 +08:00
parent d632670e45
commit ec7e93504c
6 changed files with 210 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
<%@ page contentType="text/html;charset=UTF-8"%>
<%@ include file="/WEB-INF/include/taglib.jsp"%>
<script>
function pagination() {
function pagination(pageSizes) {
pageNo = 1;
count = $('tbody').children().size();// 总记录数
@@ -15,8 +15,10 @@ function pagination() {
//$('tbody').children().slice(0, preCount).remove();
} */
pageSize = 30; // 页面大小
if(pageSizes==null || pageSizes=='' ){
pageSizes=30;
}
pageSize = pageSizes; // 页面大小
first = 1;// 首页索引
last = Math.ceil(count/pageSize);// 尾页索引
length = 8;// 显示页面长度