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 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 @@