c9b3a89a by 赵千

查询

1 parent a796eef6
......@@ -68,9 +68,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",
......