diff --git a/src/views/blindResumeInfo/info.vue b/src/views/blindResumeInfo/info.vue index 0b1b85c9..23976023 100644 --- a/src/views/blindResumeInfo/info.vue +++ b/src/views/blindResumeInfo/info.vue @@ -90,7 +90,7 @@ export default { this.setLanguage('zh') this.$updateDictionary() } - this.title = this.doctorInfo.BasicInfoView?`${this.doctorInfo.BasicInfoView.BlindName} ${this.$t('resumeInfo:title:Details')}`:'' + this.title = this.doctorInfo.BasicInfoView?`${this.doctorInfo.BasicInfoView.BlindName}${this.$t('resumeInfo:title:Details')}`:'' } }, mounted() { @@ -180,7 +180,7 @@ export default { this.holiday = res.Result.InHoliday ? 'Yes' : 'No' this.doctorInfo = res.Result !this.doctorInfo.ResearchPublicationView ? this.doctorInfo.ResearchPublicationView = {} : ''; - this.title = this.doctorInfo.BasicInfoView?`${this.doctorInfo.BasicInfoView.BlindName} ${this.$t('resumeInfo:title:Details')}`:'' + this.title = this.doctorInfo.BasicInfoView?`${this.doctorInfo.BasicInfoView.BlindName}${this.$t('resumeInfo:title:Details')}`:'' // this.title = `${this.doctorInfo.BasicInfoView.BlindName} 's Details` this.htmlTitle = this.title this.initStatus() diff --git a/src/views/resumeInfo/index.vue b/src/views/resumeInfo/index.vue index aaf5835b..9d5dfda4 100644 --- a/src/views/resumeInfo/index.vue +++ b/src/views/resumeInfo/index.vue @@ -102,7 +102,7 @@ export default { this.setLanguage('zh') this.$updateDictionary() } - this.title =this.doctorInfo.BasicInfoView?`${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName} ${this.$t('resumeInfo:title:Details')}`:'' + this.title =this.doctorInfo.BasicInfoView?`${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}${this.$t('resumeInfo:title:Details')}`:'' } }, mounted() { @@ -192,7 +192,7 @@ export default { this.holiday = res.Result.InHoliday ? 'Yes' : 'No' this.doctorInfo = res.Result !this.doctorInfo.ResearchPublicationView ? this.doctorInfo.ResearchPublicationView = {} : ''; - this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName} ${this.$t('resumeInfo:title:Details')}` + this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}${this.$t('resumeInfo:title:Details')}` this.htmlTitle = this.title this.initStatus() this.initEmploymentInfo()