Table style is lost after layui sorting

table.on('sort(goods-table2)', function(obj){ //注:tool是工具条事件名,goods-table2是table原始容器的属性 lay-filter="对应的值"
        $(".layui-table-main .layui-table tbody tr td").css("height","120px");                    
            $(".layui-table-main .layui-table tbody tr td div.layui-table-cell").css({"height":"120px","text-align":"left","padding-top":"10px"});
            $(".layui-table-main .layui-table tbody tr td div.layui-table-cell img").css({"width": "80px","height": "100px","border-radius": "5px","display":"inline-block","vertical-align":"top","margin-right":"10px"});
            $(".layui-table-main .layui-table tbody tr td .shopCon").css({"display": "inline-block","vertical-align":"top","text-align": "left","width":"67%","padding-left":"10px"});
            $(".layui-table-main .layui-table tbody tr td .shopCon .name").css({"color": "#3d3d3d","font-size": "16px"});
            $(".layui-table-main .layui-table tbody tr td .shopCon .des").css({"color": "#a3a3a3","font-size": "12px","white-space":"normal","line-height":"20px","margin-bottom":"5px"});
            $(".layui-table-main .layui-table tbody tr td .price").css({"color": "#db3e3e","font-size": "20px"});
            $(".layui-table-main .layui-table tbody tr td .price span").css({"color": "#666","font-size": "16px","text-decoration":"line-through"});        
    });

or

    table.on('sort(goods-table2)', function(obj) {//goods-table2 is the attribute of the original container of table lay-filter="corresponding value"
    table.reload('table2', {//table2 Is the id of the original container of the table
        initSort: obj
    });
});

Guess you like

Origin blog.csdn.net/u012011360/article/details/90517957