1
continuous-integration/drone/push Build is passing Details

uat_us
熊飞 2024-02-01 15:36:34 +08:00
commit 518c093cc3
4 changed files with 13 additions and 5 deletions

View File

@ -2756,6 +2756,14 @@ export function getReadingReportEvaluation(param) {
})
}
export function getSplitPPdSum(param) {
return request({
url: `/LuganoCalculate/getSplitPPdSum`,
method: 'post',
data: param
})
}
export function submitDicomVisitTask(param) {
return request({
url: `/Inspection/ReadingImageTask/SubmitDicomVisitTask`,

View File

@ -90,7 +90,7 @@ export default {
this.setLanguage('zh')
this.$updateDictionary()
}
this.title = `${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() {

View File

@ -102,9 +102,7 @@ export default {
this.setLanguage('zh')
this.$updateDictionary()
}
if (this.doctorInfo) {
this.title = `${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() {

View File

@ -79,10 +79,11 @@ export default {
this.$message.info('Please upload the GCP certificate')
return
}
const param = {
Id: this.doctorId,
GCP: this.GCP,
GCPId: this.GCPID
GCPId: this.GCP ? this.GCPID : ''
}
this.saveBtnLoading = true
updateGcpExperience(param).then(res => {
@ -187,6 +188,7 @@ export default {
})
} else {
this.fileList = []
this.GCPID = ''
}
}
},