$(function(){
$("#example1-0002").bootstrapTable({
/*data:data.columns,*/
url:"/checkActivemqList.do",
queryParams: queryParams,
method:"post",
contentType:"application/x-www-form-urlencoded",
striped: true,
cache: false,
pagination: true,
sidePagination: "server",
pageNumber: 1,
pageSize: 10,
pageList: [10, 25, 50, 100],
showColumns: true,
showRefresh: true,
//total:data.total,
columns: [{
checkbox: true,
align:"center",
},{
field: ‘queueName‘,
title: ‘队列名称‘
}, {
field: ‘message‘,
title: ‘消息内容‘
}],
locale:‘zh-CN‘,
responseHandler:function(res){
return {
"total":res.data.totalCount,
"rows":res.data.recordList,
};
},
onLoadError: function () {
alert("数据加载失败!");
},
onDblClickRow: function (row, $element) {
}
})
})
function queryParams(params){
var param = {
pageNumber: params.offset/params.limit+1,
pageSize: params.limit
};
return param;
}