diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index ac49fffa6..4b3f50416 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -1122,7 +1122,7 @@ module.exports = { RelevantMaterials: 'RelevantMaterials', evaluatorFeedback: 'Evaluator Feedback', nameTechnicalDocument: 'Name of technical document', - chapter: 'chapter', + chapter: 'Chapter', problemDescription: 'Problem Description', filingExternalOpinions: 'Filing of external opinions', regulatoryTechnicalEvaluationResults: 'Regulatory technical evaluation results', diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue index 26557fe06..1ba768a85 100644 --- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue +++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/countryCardView.vue @@ -116,6 +116,7 @@ } }, mounted() { + document.title = 'Country Card'+ '-' + this.$t('details') this.queryCountry(() => { this.replacePage() }) diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue index b058c8943..80477ef65 100644 --- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue +++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseAdd.vue @@ -278,10 +278,12 @@ } }, mounted() { - document.title = this.$t('problemKnowledgeBase') + this.$t('newlyAdded') this.getBase() if (this.$route.query.id) { this.queryById() + document.title = this.$t('problemKnowledgeBase') + this.$t('edit') + } else { + document.title = this.$t('problemKnowledgeBase') + this.$t('newlyAdded') } }, methods: { diff --git a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue index d325f194d..674d582b4 100644 --- a/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue +++ b/jero-web/src/views/businessSupport/problemKnowledgeBase/components/problemKnowledgeBaseRelease.vue @@ -95,6 +95,7 @@ }, mounted() { this.getList() + document.title = this.$t('managePublishing') }, methods: { ...mapGetters(['userInfo']),