diff --git a/jero-web/src/views/projectManagement/components/TaskList.vue b/jero-web/src/views/projectManagement/components/TaskList.vue index 1ac1af27b..5c7147f7e 100644 --- a/jero-web/src/views/projectManagement/components/TaskList.vue +++ b/jero-web/src/views/projectManagement/components/TaskList.vue @@ -78,7 +78,7 @@
{{$t('Deadline')}}: {{result.prehomoDueDate}}
- {{$t('ProcessStatus')}}: {{result.prehomoTaskStatus}}
+ {{$t('ProcessStatus')}}: {{result.prehomoStatus}}
{{statusText[result.prehomoFlowTaskStatus]}} diff --git a/jero-web/src/views/projectManagement/components/nonConformance.vue b/jero-web/src/views/projectManagement/components/nonConformance.vue index 3ef48b450..0e83765f0 100644 --- a/jero-web/src/views/projectManagement/components/nonConformance.vue +++ b/jero-web/src/views/projectManagement/components/nonConformance.vue @@ -149,6 +149,7 @@ projectLibraryId:this.$route.query.id, ...this.queryParam } + this.loading = true getAction(this.url.page, query).then((res) => { if (res.success) { this.dataSource = res.result.records || [] diff --git a/jero-web/src/views/projectManagement/projectNonConformance/index.vue b/jero-web/src/views/projectManagement/projectNonConformance/index.vue index 77f3ba9f4..4923bdbdc 100644 --- a/jero-web/src/views/projectManagement/projectNonConformance/index.vue +++ b/jero-web/src/views/projectManagement/projectNonConformance/index.vue @@ -57,20 +57,12 @@ class="box-input" v-model="queryParam.projectName" :placeholder="$t('PleaseSelect')+$t('RelatedItems')"> - - - {{ $t('designComplianceReview') }} - - - - - {{ $t('preHomeConfirmation') }} - - - - - {{ $t('verificationComplianceReview') }} - + + + {{ item.projectName}} +
@@ -185,6 +177,7 @@ loading: false, dataSource: [], selectedRowKeys: [], + projectNameList: [], toggleSearchStatus: false, columns: [ { @@ -234,8 +227,18 @@ }, mounted() { this.getList() + this.getNameList() }, methods: { + getNameList() { + getAction('project/projectNameInfoEO/list', {}).then((res) => { + if (res.success) { + this.projectNameList = res.result || [] + } else { + this.projectNameList = [] + } + }) + }, handleToggleSearch() { this.toggleSearchStatus = !this.toggleSearchStatus }, @@ -266,6 +269,7 @@ pageSize: this.pageSize, ...this.queryParam } + this.loading = true getAction(this.url.page, query).then((res) => { if (res.success) { this.dataSource = res.result.records || []