From 4746e623a85f6cfd18bf6ff8fbd7626bbce77917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167> Date: Wed, 10 May 2023 14:21:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9UAT=E6=8F=90=E5=87=BA?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/listOfRegulations.vue | 32 ++++++++++++------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/jero-web/src/views/projectManagement/components/listOfRegulations.vue b/jero-web/src/views/projectManagement/components/listOfRegulations.vue index d790d21fa..44a5febf8 100644 --- a/jero-web/src/views/projectManagement/components/listOfRegulations.vue +++ b/jero-web/src/views/projectManagement/components/listOfRegulations.vue @@ -2862,12 +2862,16 @@ } if (dataList[i].designFlowStatus == 'List to be checked' || dataList[i].designFlowStatus == 'Duty Person Rejected') { if (dataList[i].designDeliverableType && dataList[i].designDutyId && dataList[i].designDueDate) { - this.requestsNum++ - this.startProcessList.push({ - dataList: dataList[i], - type: 2, - requestsNum: this.requestsNum - }) + if (dataList[i].designDeliverableType == '1645667531513237506'){ + + }else{ + this.requestsNum++ + this.startProcessList.push({ + dataList: dataList[i], + type: 2, + requestsNum: this.requestsNum + }) + } // _this.startProcess(dataList[i], 2, this.requestsNum) } } else { @@ -2876,12 +2880,16 @@ } if (dataList[i].verifyFlowStatus == 'List to be checked' || dataList[i].verifyFlowStatus == 'Duty Person Rejected') { if (dataList[i].verifyDeliverableType && dataList[i].verifyDutyId && dataList[i].verifyDueDate) { - this.requestsNum++ - this.startProcessList.push({ - dataList: dataList[i], - type: 4, - requestsNum: this.requestsNum - }) + if (dataList[i].verifyDeliverableType == '1645667531513237506'){ + + }else{ + this.requestsNum++ + this.startProcessList.push({ + dataList: dataList[i], + type: 4, + requestsNum: this.requestsNum + }) + } // _this.startProcess(dataList[i], 4, this.requestsNum) } } else {