From 90754de526c6bf729c866cc605586aeb86ede1f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BD=A6=E6=B3=BD?= Date: Mon, 24 Apr 2023 11:16:29 +0800 Subject: [PATCH 1/2] =?UTF-8?q?OTA-=E9=A1=B9=E7=9B=AE=E7=AE=A1=E7=90=86-?= =?UTF-8?q?=E8=AE=A4=E8=AF=81=E6=B8=85=E5=8D=95-=E7=8A=B6=E6=80=81?= =?UTF-8?q?=E2=80=9C=E6=B8=85=E5=8D=95=E5=BE=85=E6=A0=A1=E6=A0=B8=E2=80=9D?= =?UTF-8?q?=E6=94=B9=E4=B8=BA=E2=80=9C=E4=BB=BB=E5=8A=A1=E5=BE=85=E5=8F=91?= =?UTF-8?q?=E8=B5=B7=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/certificationList/index.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/jero-web/src/views/projectManagement/components/certificationList/index.vue b/jero-web/src/views/projectManagement/components/certificationList/index.vue index 523b0f69f..900e00203 100644 --- a/jero-web/src/views/projectManagement/components/certificationList/index.vue +++ b/jero-web/src/views/projectManagement/components/certificationList/index.vue @@ -981,6 +981,13 @@ return } this.dataSource = res.result.records || [] + this.dataSource.forEach(value => { + if (value.flowStatusName =='清单待校核'){ + value.flowStatusName = '任务待发起' + }else if(value.flowStatusName =='List to be checked'){ + value.flowStatusName = 'The task is to be initiated' + } + }) this.total = res.result.total this.loading = false this.JLoading = false From c55167a6cf19bd8f2c51701fc6193286c09deff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BD=A6=E6=B3=BD?= Date: Mon, 24 Apr 2023 11:21:53 +0800 Subject: [PATCH 2/2] =?UTF-8?q?OTA-=E5=BE=85=E5=8A=9E=E4=B8=AD=E5=BF=83-?= =?UTF-8?q?=E6=B3=95=E8=A7=84=E8=AE=A4=E8=AF=81=E6=B5=81=E7=A8=8B-?= =?UTF-8?q?=E6=A0=87=E9=A2=98=E5=8A=A0=E7=B2=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../projectRegulationTasks/components/confirmationDrawer.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jero-web/src/views/toDoCenter/projectRegulationTasks/components/confirmationDrawer.vue b/jero-web/src/views/toDoCenter/projectRegulationTasks/components/confirmationDrawer.vue index e0ee2a3b1..89489af92 100644 --- a/jero-web/src/views/toDoCenter/projectRegulationTasks/components/confirmationDrawer.vue +++ b/jero-web/src/views/toDoCenter/projectRegulationTasks/components/confirmationDrawer.vue @@ -1,7 +1,6 @@