...
|
...
|
@@ -44,13 +44,19 @@ var g = new common.grid({ |
|
|
display:"品牌Logo",
|
|
|
name:"brandIco",
|
|
|
render: function(item) {
|
|
|
return '<img src="' + item.brandIco + '" width="100" height="100" id="logo-' + item.__index + '" class="logo-image" />'
|
|
|
if (item.brandIco) {
|
|
|
return '<img src="' + item.brandIco + '" width="100" height="100" id="logo-' + item.__index + '" class="logo-image" />';
|
|
|
}
|
|
|
return '<div id="logo-' + item.__index + '"/>';
|
|
|
}
|
|
|
}, {
|
|
|
display:"线下店品牌Logo",
|
|
|
name:"offlineBrandIco",
|
|
|
render: function(item) {
|
|
|
return '<img src="' + item.offlineBrandIco + '" width="100" height="100" id="offline-logo-' + item.__index + '"/>'
|
|
|
if (item.offlineBrandIco) {
|
|
|
return '<img src="' + item.offlineBrandIco + '" width="100" height="100" id="offline-logo-' + item.__index + '"/>';
|
|
|
}
|
|
|
return '<div id="offline-logo-' + item.__index + '"/>';
|
|
|
}
|
|
|
},{
|
|
|
display: '品牌名称',
|
...
|
...
|
|