...
|
...
|
@@ -70,23 +70,29 @@ var g = new common.grid({ |
|
|
columns: [
|
|
|
{
|
|
|
display: "ID",
|
|
|
width: 50,
|
|
|
name: "id"
|
|
|
}, {
|
|
|
display: "标签名称",
|
|
|
width: 100,
|
|
|
name: "tagName"
|
|
|
}, {
|
|
|
display: '分类ID',
|
|
|
width: 200,
|
|
|
name: "categoryId"
|
|
|
}, {
|
|
|
display: '显示平台',
|
|
|
width: 50,
|
|
|
name: "platform"
|
|
|
}, {
|
|
|
display: '显示频道',
|
|
|
width: 50,
|
|
|
render:function(item){
|
|
|
return getChannelName(item.channel);
|
|
|
}
|
|
|
}, {
|
|
|
display: '状态',
|
|
|
width: 50,
|
|
|
render: function (item) {
|
|
|
return status[item.status];
|
|
|
}
|
...
|
...
|
|