diff --git a/src/api/trials.js b/src/api/trials.js index 43eea227..7808c3f3 100644 --- a/src/api/trials.js +++ b/src/api/trials.js @@ -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`, diff --git a/src/views/blindResumeInfo/info.vue b/src/views/blindResumeInfo/info.vue index 330ed38a..e10c07c8 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.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() { diff --git a/src/views/resumeInfo/index.vue b/src/views/resumeInfo/index.vue index b79caf6a..9d5dfda4 100644 --- a/src/views/resumeInfo/index.vue +++ b/src/views/resumeInfo/index.vue @@ -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() { diff --git a/src/views/reviewers/components/GcpCertificate.vue b/src/views/reviewers/components/GcpCertificate.vue index 2c7957b5..43e8b015 100644 --- a/src/views/reviewers/components/GcpCertificate.vue +++ b/src/views/reviewers/components/GcpCertificate.vue @@ -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 = '' } } },