fix:场所出入登记接口提交

pg_adapter
wangxy 8 months ago
parent 0e73d4f524
commit ad601b1d3b

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

Loading…
Cancel
Save