layui.table.render 不分页显示

446 阅读1分钟
var tableIns = layui.table.render({

  elem: '#user_list'
  ,url:"/console/user?id="+localStorage.getItem("id")
  ,id: 'user_list'
  ,page: false
  ,limit:15
  ,limits:[]
  ,cols: [[ //表头
       {field: 'id', title: 'ID',sort:'true', width:200}
      ,{field: 'tname', title: '群名',sort:'true', width:100}
      ,{fixed: 'right', title:"操作", align:'left',style: "height:111px;",width:280, toolbar: '#baseListBar'}
    ]]
	,done:function(res, curr, count){
		/*   $(".current_total").empty().text((0==res.total ? 0:res.total)); */
		  
	}
});