From 63c283cad85fad6618cb57a724bd617758d061b8 Mon Sep 17 00:00:00 2001 From: lideqin <694785430@qq.com> Date: Thu, 22 Aug 2024 10:29:18 +0800 Subject: [PATCH] =?UTF-8?q?[update]=20=E5=BE=85=E5=8A=9E=E6=B5=81=E7=A8=8B?= =?UTF-8?q?-=E6=B3=95=E8=A7=84=E7=AC=A6=E5=90=88=E6=80=A7=E6=8E=92?= =?UTF-8?q?=E6=9F=A5=E6=B5=81=E7=A8=8B=EF=BC=8C=E6=98=AF=E5=90=A6=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E8=BD=AC=E5=8A=9E=E6=8C=89=E9=92=AE=E5=8A=A0=E5=88=A4?= =?UTF-8?q?=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workCenter/processCenter/table/TodoList.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/workCenter/processCenter/table/TodoList.vue b/src/views/workCenter/processCenter/table/TodoList.vue index 15825de..34d967a 100644 --- a/src/views/workCenter/processCenter/table/TodoList.vue +++ b/src/views/workCenter/processCenter/table/TodoList.vue @@ -266,6 +266,10 @@ export default { if (record.prcType + '' === ProcessType.STANDARD_INTERPRETATION_PROCESS.value && StandardInterpretationNodes.standardInterpreterDistribution.value === record.nodeId) { return YesOrNoEnum.NO.value !== record.showRejectTransition } + // 法规符合性排查流程只有第一次分发之前可以转办 + if (record.prcType + '' === ProcessType.REGULATORY_COMPLIANCE_CHECK.value) { + return record.showRejectTransition === YesOrNoEnum.YES.value + } if (record.prcType && record.nodeId) { return !this.notTurnToBtn[record.prcType + ''].some(tt => record.nodeId.indexOf(tt) !== -1) } else {