...
|
...
|
@@ -61,15 +61,21 @@ |
|
|
}
|
|
|
},{
|
|
|
title: "IP",
|
|
|
field: "hostIp"
|
|
|
field: "hostIp",
|
|
|
formatter : function(value, rowData, rowIndex) {
|
|
|
return rowData[1];
|
|
|
}
|
|
|
},{
|
|
|
title: "时间",
|
|
|
field: "redcordTime"
|
|
|
field: "redcordTime",
|
|
|
formatter : function(value, rowData, rowIndex) {
|
|
|
return rowData[0];
|
|
|
}
|
|
|
},{
|
|
|
title: "是否活动",
|
|
|
field: "isLive",
|
|
|
formatter : function(value, rowData, rowIndex) {
|
|
|
if (value == 1) {
|
|
|
if (rowData[2] == 1) {
|
|
|
return "是";
|
|
|
} else {
|
|
|
return "否";
|
...
|
...
|
|