美文网首页
layui table flxed导致数据表格固定列的行高和ta

layui table flxed导致数据表格固定列的行高和ta

作者: 卡地亚克思 | 来源:发表于2020-08-21 10:01 被阅读0次
var tableIn = table.render({
    elem: '#order-list',
    url: '{:url("orderList")}',
    method: 'post',
    title: '{:lang("admin")}{:lang("orderList")}',
    cols: [[
        {field: 'city', title: '城市', minWidth: 130},
        {field: 'order_sn', title: '订单编号', minWidth: 180},
    ]],
    page: true,
    done: function (res, curr, count) {
        // 该方法用于解决,使用fixed固定列后,行高和其他列不一致的问题
        $(".layui-table-main tr").each(function (index ,val) {
            $($(".layui-table-fixed .layui-table-body tbody tr")[index]).height($(val).height());
        });
    }
});

相关文章