0b114aa0 by 赵千

受理时间

1 parent c9b3a89a
......@@ -44,9 +44,23 @@ class data extends filter {
minWidth: 150,
},
{
prop: "createdate",
label: "创建时间",
prop: "slsj",
label: "受理时间",
width: 140,
render: (h, scope) => {
if (scope.row.slsj != null && scope.row.slsj != '') {
return (
<div>
{scope.row.slsj.substring(0, 19)}
</div>
)
}
return (
<div>
/
</div>
)
}
},
{
prop: "recflowid",
......