diff --git a/src/views/resumeInfo/index.vue b/src/views/resumeInfo/index.vue index aee1c71e..b79caf6a 100644 --- a/src/views/resumeInfo/index.vue +++ b/src/views/resumeInfo/index.vue @@ -102,7 +102,9 @@ export default { this.setLanguage('zh') this.$updateDictionary() } - this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}${this.$t('resumeInfo:title:Details')}` + if (this.doctorInfo) { + this.title = `${this.doctorInfo.BasicInfoView.FirstName} ${this.doctorInfo.BasicInfoView.LastName}${this.$t('resumeInfo:title:Details')}` + } } }, mounted() {