熊飞 2024-02-22 09:58:33 +08:00
parent ee15957aa7
commit b9eaab1900
2 changed files with 1 additions and 3 deletions

View File

@ -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()

View File

@ -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()
//
}
}
})