From 756544e88a48e96a3e9acb30b7e9fe990de542fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=86=8A=E9=A3=9E?= Date: Thu, 18 Jan 2024 13:57:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=B7=BB=E5=8A=A0=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E6=88=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../clinicalDataQuestions/components/QuestionsForm.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/clinicalDataQuestions/components/QuestionsForm.vue b/src/components/clinicalDataQuestions/components/QuestionsForm.vue index 3dbd11e2..03c3b3cc 100644 --- a/src/components/clinicalDataQuestions/components/QuestionsForm.vue +++ b/src/components/clinicalDataQuestions/components/QuestionsForm.vue @@ -201,7 +201,7 @@ export default { let imgBlob = this.convertBase64ToBlob(base64) let PicturePath = `/${this.trialId}/Read/${this.subjectId}/${this.visitId}/lc/${new Date().getTime()}.png` const result = await this.OSSclient.put(PicturePath, imgBlob) - params2.PicturePath = PicturePath + params2.PicturePath = this.$getObjectName(result.url) SubmitClinicalFormAndSign(params2).then(res => { this.$message.success(this.$t('trials:crcUpload:message:submittedSuccessfully')) this.close() @@ -284,7 +284,7 @@ export default { let imgBlob = this.convertBase64ToBlob(base64) let PicturePath = `/${this.trialId}/Read/${this.subjectId}/${this.visitId}/lc/${new Date().getTime()}.png` const result = await this.OSSclient.put(PicturePath, imgBlob) - params.PicturePath = PicturePath + params.PicturePath = this.$getObjectName(result.url) submitClinicalForm(params).then(res => { this.$message.success(this.$t('common:message:savedSuccessfully')) this.close()