实时报表Excel导出调整为后台导出
This commit is contained in:
@@ -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;// 显示页面长度
|
||||
|
||||
Reference in New Issue
Block a user