<el-image
style="width: 30px;height: 30px"
:src="scope.row.showSystemLogoUrl"
:preview-src-list="showImg(scope.row.showSystemLogoUrl)">
</el-image>
// 点击预览logo图片
showImg(img){
let imgArr=[];
imgArr.push(img);
return imgArr;
},