$(function() {
$('#dataGrid').bootstrapTable(
{
url : 'article/selectListByType',
method : 'post',
toolbar : '#toolbar',
contentType : 'application/x-www-form-urlencoded',
striped : true,
showColumns : true,
showRefresh : true,
pagination : true,
pageSize : 10,
sortName : 'id',
sidePagination : 'server',
queryParamsType: 'limit',
queryParams: queryParams,
columns : [
/* {checkbox : true}, */
{
field : 'id',
title : '',
align : 'center',
formatter : function(value, row, index) {
return index + 1;
}
},
{field : 'lastModTime',title : '发布时间', width: 150},
{field : 'noticeType',title : '公告类型',align : 'center', formatter:function(value, row, index){
var noticeTypeJson = {
1:"物业公告",
2:"管委会公告",
3:"园区风采"
};
return noticeTypeJson[row.noticeType || 4] || "未知类型";
}}
]
});
if($('#type').val() != 1){
$('#dataGrid').bootstrapTable('hideColumn', 'noticeType');
}
});
如上代码,可根据需要将公告类型列隐藏起来。
if($('#type').val() != 1){
$('#dataGrid').bootstrapTable('hideColumn', 'noticeType');
}