...
|
...
|
@@ -74,7 +74,7 @@ var g = new common.grid({ |
|
|
articleGender: common.util.__input('articleGender'),
|
|
|
authorId: common.util.__input('authorId'),
|
|
|
maxSortId: common.util.__input('maxSortId'),
|
|
|
status: common.util.__input('status'),
|
|
|
status: $('#status').val(),//common.util.__input('status'),
|
|
|
orderBy: common.util.__input('orderBy'),
|
|
|
startTime: common.util.__input('starttime'),
|
|
|
endTime: common.util.__input('endtime'),
|
...
|
...
|
@@ -92,7 +92,11 @@ var g = new common.grid({ |
|
|
}
|
|
|
}, {
|
|
|
display: '文章标题',
|
|
|
name: "articleTitle"
|
|
|
//name: "articleTitle",
|
|
|
width:'15%',
|
|
|
render: function(item) {
|
|
|
return '<span class="text-overflow"">'+item.articleTitle+'</span>'
|
|
|
}
|
|
|
}, {
|
|
|
display: '分类',
|
|
|
name: "maxSortName"
|
...
|
...
|
|