From 7ccbeb55b47beba1a93d35b0e656581dce9939be Mon Sep 17 00:00:00 2001 From: danshihao Date: Thu, 22 Aug 2024 09:57:55 +0800 Subject: [PATCH] =?UTF-8?q?[update=2089221]=20=E8=A7=A3=E8=AF=BB=E6=B5=81?= =?UTF-8?q?=E7=A8=8B=E5=88=86=E5=8F=91=E9=83=A8=E5=88=86=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=90=8E=E5=8E=BB=E6=8E=89=E8=BD=AC=E5=8A=9E=E5=92=8C=E9=A9=B3?= =?UTF-8?q?=E5=9B=9E=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workCenter/processCenter/table/TodoList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/workCenter/processCenter/table/TodoList.vue b/src/views/workCenter/processCenter/table/TodoList.vue index 98e22e8..15825de 100644 --- a/src/views/workCenter/processCenter/table/TodoList.vue +++ b/src/views/workCenter/processCenter/table/TodoList.vue @@ -264,7 +264,7 @@ export default { isShowTurnTo (record) { // 解读流程分发部分数据后去掉转办按钮 if (record.prcType + '' === ProcessType.STANDARD_INTERPRETATION_PROCESS.value && StandardInterpretationNodes.standardInterpreterDistribution.value === record.nodeId) { - return YesOrNoEnum.NO.value === record.showRejectTransition + return YesOrNoEnum.NO.value !== record.showRejectTransition } if (record.prcType && record.nodeId) { return !this.notTurnToBtn[record.prcType + ''].some(tt => record.nodeId.indexOf(tt) !== -1)