+
+
+
+
+
+
+
+
+
+
+
+
+
+ 办理
+ 打印通知书
+
+
+
+
+
+
+
+ {
each.index = pageStart + i++
- each.bustypename = this.$util.getTaskBusinessTypeName(each.bustype)
+ each.bustypename = each.bustype === '50' && each.subBusType != null
+ ? this.$util.getTaskBusinessTypeName(each.bustype + '-' + each.subBusType)
+ : this.$util.getTaskBusinessTypeName(each.bustype)
each.busStatusName = this.$util.getTaskNodeName(each.currentNodeOrBizStatus)
// 异议类型判断是否打印受理/不受理通知书
each.isPassDissentApply = false
@@ -4335,6 +4577,24 @@ export default {
break
}
}
+ // 强制注销
+ case '50': {
+ const subTypeRouteMap = {
+ '0': '/forceNotice/force/todo/handle',
+ '1': '/forceNotice/inclusion/todo/handle',
+ '2': '/forceNotice/remove/todo/handle',
+ '4': '/forceNotice/recovery/todo/handle',
+ '5': '/forceNotice/liccan/todo/handle'
+ }
+ const handlePath = subTypeRouteMap[row.subBusType]
+ if (handlePath) {
+ this.$router.push({
+ path: handlePath,
+ query: { bizSeqNo: row.bizseqid }
+ })
+ }
+ break
+ }
}
},
goToAbnormal(row) {