layui 设置表格高度自适应后,工具栏设置fixed后高度,不一致问题

 js部分:                
,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());
                        });
                    }
css部分:
    .layui-table-cell {
        height: auto !important;
    }

 

posted @ 2022-10-25 09:48  原来是个帅小伙  阅读(575)  评论(0编辑  收藏  举报