diff --git a/src/views/blindResumeInfo/info.vue b/src/views/blindResumeInfo/info.vue index 852c990c..1790345c 100644 --- a/src/views/blindResumeInfo/info.vue +++ b/src/views/blindResumeInfo/info.vue @@ -182,7 +182,6 @@ export default { 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.BlindName} 's Details` this.htmlTitle = this.title this.initStatus() this.initEmploymentInfo() diff --git a/src/views/resumeInfo/index.vue b/src/views/resumeInfo/index.vue index e2fccde9..e5a5dad2 100644 --- a/src/views/resumeInfo/index.vue +++ b/src/views/resumeInfo/index.vue @@ -189,15 +189,14 @@ export default { this.pageLoading = false if (res.IsSuccess) { if (res.Result) { - this.holiday = res.Result.InHoliday ? 'Yes' : 'No' this.doctorInfo = res.Result + this.holiday = res.Result.InHoliday ? 'Yes' : 'No' !this.doctorInfo.ResearchPublicationView ? this.doctorInfo.ResearchPublicationView = {} : ''; this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}${this.$t('resumeInfo:title:Details')}` this.htmlTitle = this.title this.initStatus() this.initEmploymentInfo() this.initSpecialtyInfo() - // } } })