dd45d091 by jiaozeping@pashanhoo.com

青海2.0版本

1 parent 914363f2
......@@ -32,23 +32,23 @@ class data extends filter {
label: "业务来源",
width: '100',
},
{
label: "流程状态",
width: '80',
render: (h, scope) => {
if (scope.row.cfgqzt == '1') {
return <div class='suspend'>查封挂起</div>
}
if (scope.row.yygqzt == '1') {
return <div class='suspend'>异议挂起</div>
}
if (scope.row.jssj == null) {
return <div class='allow'>进行中</div>
}else{
return <div class='prohibit'>已结束</div>
}
}
},
// { 青海2.0提出 (受理完成的业务,在已办箱中,流程状态显示“进行中”,与数据实际状态不符,已容易误导别人,因改为“完结”。) 因此取消
// label: "流程状态",
// width: '80',
// render: (h, scope) => {
// if (scope.row.cfgqzt == '1') {
// return <div class='suspend'>查封挂起</div>
// }
// if (scope.row.yygqzt == '1') {
// return <div class='suspend'>异议挂起</div>
// }
// if (scope.row.jssj == null) {
// return <div class='allow'>进行中</div>
// }else{
// return <div class='prohibit'>已结束</div>
// }
// }
// },
{
label: "业务号",
width: '110',
......