|
|
@ -87,14 +87,15 @@
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'caseName',
|
|
|
|
field: 'caseName',
|
|
|
|
title: '案件名称',
|
|
|
|
title: '案件名称',
|
|
|
|
},
|
|
|
|
width: '40',
|
|
|
|
{
|
|
|
|
widthUnit: '%',
|
|
|
|
field: 'caseAssum',
|
|
|
|
align: "left"
|
|
|
|
title: '案件编号',
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'caseType',
|
|
|
|
field: 'caseType',
|
|
|
|
title: '案件类型',
|
|
|
|
title: '案件类型',
|
|
|
|
|
|
|
|
width: '15',
|
|
|
|
|
|
|
|
widthUnit: '%',
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
return $.table.selectDictLabel(caseType, value);
|
|
|
|
return $.table.selectDictLabel(caseType, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -102,6 +103,8 @@
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'caseGrade',
|
|
|
|
field: 'caseGrade',
|
|
|
|
title: '案件涉密等级',
|
|
|
|
title: '案件涉密等级',
|
|
|
|
|
|
|
|
width: '10',
|
|
|
|
|
|
|
|
widthUnit: '%',
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
return $.table.selectDictLabel(caseGrade, value);
|
|
|
|
return $.table.selectDictLabel(caseGrade, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -109,6 +112,8 @@
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'caseTime',
|
|
|
|
field: 'caseTime',
|
|
|
|
title: '案件发生时间',
|
|
|
|
title: '案件发生时间',
|
|
|
|
|
|
|
|
width: '10',
|
|
|
|
|
|
|
|
widthUnit: '%',
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
if (value !== null){
|
|
|
|
if (value !== null){
|
|
|
|
var date = new Date(value);
|
|
|
|
var date = new Date(value);
|
|
|
@ -121,13 +126,11 @@
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
|
|
|
|
field: 'caseAddress',
|
|
|
|
|
|
|
|
title: '案件发生地点',
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
field: 'state',
|
|
|
|
field: 'state',
|
|
|
|
title: '案件状态',
|
|
|
|
title: '案件状态',
|
|
|
|
|
|
|
|
width: '10',
|
|
|
|
|
|
|
|
widthUnit: '%',
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
formatter: function(value, row, index) {
|
|
|
|
return $.table.selectDictLabel(caseStatus, value);
|
|
|
|
return $.table.selectDictLabel(caseStatus, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|