8eebb845 by tianhaohao@pashanhoo.com

添加进度查询对应的案件状态

1 parent 421677be
......@@ -31,6 +31,12 @@ class data extends filter {
label: "流程状态",
width: '80',
render: (h, scope) => {
if (scope.row.ajzt == '4') {
return <div class='prohibit'>不予登记</div>
}
if (scope.row.ajzt == '5') {
return <div class='prohibit'>用户撤回</div>
}
if (scope.row.cfgqzt == '1') {
return <div class='suspend'>查封挂起</div>
}
......