{
field : 'imgae',
title : '文件预览',
cellStyle:formatTableUnit,
formatter: function(value, row, index) {
//console.log(row)
//页面回显图片内容
if(row.fdFile.fileType=="video"){
return "<img style='width:60px;height:auto;' src='/fileUpload/fileUpload/getFtpFileVideoInImg?id="+row.fileId+"' alt=''>";
}else if(row.fdFile.fileType=="img"){
return "<img style='width:60px;height:auto;' src='/fileUpload/fileUpload/getFtpFile?id="+row.fileId+"' alt=''>";
}
}
},