fastadmin列表字段截取

{
    field: 'title', title: __('标题'),
    formatter: function(value){
        if(value.length > 20){
            return value.toString().substr(0, 20) + '...';
        }else{
            return value;
        }
    }
},

  

posted @ 2020-07-16 09:26  王的孤傲  阅读(866)  评论(0编辑  收藏  举报