{
title: "许可证",
key: "identifyImgs",
width:500,
render: (h, params) => {
var arr = params.row.identifyImgs;
return h('ul', arr.map(function(item, index) {
return h("img", {
domProps: {
src: item,
border:0
},
style: {
display: "inline-block",
maxWidth: "100px",
maxHeight:"100px",
marginTop:"5px",
marginBottom:"5px"
}
})
}))
}
},