From 60e585043f72ab20eb72af801594446634c00caa Mon Sep 17 00:00:00 2001
From: sunFlower <787203167@qq.com>
Date: Thu, 27 Oct 2022 11:35:45 +0800
Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93?=
=?UTF-8?q?=E5=B7=B2=E7=9F=A5bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/evaluatorFeedback.vue | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
diff --git a/jero-web/src/views/processCenter/components/evaluatorFeedback.vue b/jero-web/src/views/processCenter/components/evaluatorFeedback.vue
index 66b4c56aa..85420a896 100644
--- a/jero-web/src/views/processCenter/components/evaluatorFeedback.vue
+++ b/jero-web/src/views/processCenter/components/evaluatorFeedback.vue
@@ -15,7 +15,15 @@
{{$t('complianceResults')}}
- {{formInline.complianceResult == 'Compliance'?$t('accord'):$t('nonConformity')}}
+
+ {{$t('accord')}}
+
+
+ {{$t('nonConformity')}}
+
+
+ --
+
{{$t('relevantSections')}}
- {{item.relatedSection}}
+ {{item.relatedSection ?item.relatedSection : '--'}}
{{$t('problemDescription')}}
- {{item.issueOrSuggest}}
+ {{item.issueOrSuggest ? item.issueOrSuggest :'--'}}
{{$t('relevantSections')}}
- {{item.relatedSection}}
+ {{item.relatedSection?item.relatedSection : '--'}}
@@ -132,7 +140,7 @@
:title="$t('problemDescription')">{{$t('problemDescription')}}
- {{item.issueOrSuggest}}
+ {{item.issueOrSuggest ? item.issueOrSuggest:'--'}}
From 7dc56839b4d018fe101d17de7ee8c7878cc434d7 Mon Sep 17 00:00:00 2001
From: sunFlower <787203167@qq.com>
Date: Thu, 27 Oct 2022 14:09:46 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93?=
=?UTF-8?q?=E5=B7=B2=E7=9F=A5bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../processCenter/processForm/regulatoryProcess/index.vue | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/jero-web/src/views/processCenter/processForm/regulatoryProcess/index.vue b/jero-web/src/views/processCenter/processForm/regulatoryProcess/index.vue
index dfb95253c..181c1f247 100644
--- a/jero-web/src/views/processCenter/processForm/regulatoryProcess/index.vue
+++ b/jero-web/src/views/processCenter/processForm/regulatoryProcess/index.vue
@@ -124,10 +124,16 @@
})
},
lawsOpinionAssessmentResult() {
+ let createBy = ''
+ if (this.$route.query.taskDefinitionKey == 'gcsfq' && this.disabled){
+ createBy = ''
+ }else{
+ createBy = this.userInfo().username
+ }
getAction(this.url.list, {
lawsOpinionGatherId: this.queryProject.id,
actiProcInstId: this.$route.query.prcId,
- createBy: this.userInfo().username
+ createBy: createBy
}).then((res) => {
if (res.success) {
this.feedbackDataList = res.result || []