1.大多数时候我们并不会在table加载完后在执行别的方法,仅需正确加载表格数据就可以了

但是某些特别的客户会要求在表格加载完成后提示数据总条数或者其他的,这个时候我们就需要

done:function(){}  这个方法了,如下所示

table.render({
    elem: '#gridList',//指定原始表格table元素容器
    url: '/Controller/Action/GetGridJson', //数据接口的地址
    height: 'full-250',//高度将始终铺满(full),无论浏览器尺寸如何。
    cellMinWidth: 80,//单元格最小宽度
    title: '',//标题名称
    page: true,//是否分页,默认false
    autoSort: false,//自动排序
    limit: 20,//每页数据条数
    where: { sortColumn: 'CreateTime', sortType: 'desc' },//默认排序字段和排序类型
    cols: [[ //表头
		{ checkbox: true }
		, { field: 'id', title: 'ID', width: 50, sort: true, fixed: 'left' }
		, { field: 'name', title: '用户名', width: 200 }
		, { field: 'username', title: '账号', width: 200, sort: true }
		, { field: 'tel', title: '电话', width: 200 }
		, { field: 'QQ', title: 'QQ', width: 200 }
    ]],
    //在表格加载完毕后执行的方法
    done: function (res, curr, count) {
        layer.alert("本次搜索到 共" + count + "条数据", { icon: 0 });
    }
});

 

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐