...
|
...
|
@@ -16,6 +16,11 @@ var ENUM = { |
|
|
'-1': '已关闭',
|
|
|
0: '未发布',
|
|
|
1: '已发布'
|
|
|
},
|
|
|
|
|
|
BLKEnum: {
|
|
|
0: '否',
|
|
|
1: '是'
|
|
|
}
|
|
|
|
|
|
};
|
...
|
...
|
@@ -77,7 +82,8 @@ var g = new common.grid({ |
|
|
status: $('#status').val(),//common.util.__input('status'),
|
|
|
orderBy: common.util.__input('orderBy'),
|
|
|
startTime: common.util.__input('starttime'),
|
|
|
endTime: common.util.__input('endtime')
|
|
|
endTime: common.util.__input('endtime'),
|
|
|
appType: common.util.__input('appType')
|
|
|
};
|
|
|
},
|
|
|
columns: [{
|
...
|
...
|
@@ -148,6 +154,11 @@ var g = new common.grid({ |
|
|
}
|
|
|
}
|
|
|
}, {
|
|
|
display: 'BLK',
|
|
|
render: function (item) {
|
|
|
return "<p>" + ENUM.BLKEnum[item.appType] + "</p>";
|
|
|
}
|
|
|
},{
|
|
|
display: '操作',
|
|
|
//}
|
|
|
name: "status",
|
...
|
...
|
|