diff --git a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFFAdvance/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFFAdvance/QuestionForm.vue index 95a49324..9cc5814c 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFFAdvance/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFFAdvance/QuestionForm.vue @@ -545,8 +545,6 @@ export default { } await store.dispatch('reading/removeMeasuredData', { visitTaskId: this.visitTaskId, measureData: this.questionForm.MeasureData, questionId: this.parentQsId, rowIndex: this.questionForm.RowIndex }) DicomEvent.$emit('getMeasureData') - - this.$set(this.questionForm, 'IsDicomReading', true) this.$set(this.questionForm, 'MeasureData', '') let anwsers = Object.assign({}, this.questionForm) @@ -565,9 +563,9 @@ export default { DicomEvent.$emit('getScreenshots', { questionId: this.parentQsId, rowIndex: this.questionForm.RowIndex, visitTaskId: this.visitTaskId, lesionName: this.lesionMark, lesionType: this.lesionType, isMarked: !!measureData }, async val => { try { let picturePath = '' - if (val && measureData && this.questionForm.IsDicomReading) { + if (val && measureData) { let pictureObj = await this.uploadScreenshots(`${new Date().getTime()}`, val) - + picturePath = pictureObj.isSuccess ? this.$getObjectName(pictureObj.result.url) : '' } let answers = []