FastAdmin 中table字段太长,显示省略号,鼠标停留显示文字

{
    field: 'question',
    title: __('Question'),
    operate: false,
    formatter : function(value, row, index, field){
        return "<span style='display: block;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;' title='" + row.question + "'>" + value + "</span>";
    },
    cellStyle : function(value, row, index, field){
        return {
            css: {
                "white-space": "nowrap",
                "text-overflow": "ellipsis",
                "overflow": "hidden",
                "max-width":"150px"
            }
        };
    }
}

 

posted @ 2023-04-03 10:36  晨光浅夏  阅读(113)  评论(0编辑  收藏  举报