Authored by kun

判断图片是否为空

... ... @@ -115,6 +115,9 @@
width: 80,
align: "center",
formatter: function (value) {
if (value == null || value == '' || value == undefined) {
return '';
}
return '<img src="' + value + '" style="width:98px;height:98px"/></a>';
}
}, {
... ...