diff --git a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue index 742f256a..f3dfe44d 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/MRIPDFF/QuestionForm.vue @@ -733,7 +733,8 @@ export default { return new Blob([bytesCode], { type: imgtype }) }, async handleSave() { - const valid = await this.$refs.measurementForm.validate() + try { + const valid = await this.$refs.measurementForm.validate() if (!valid) return if (parseInt(this.questionForm[this.isMeasurableId]) === 1) { // 检验是否有标记为保存 @@ -817,6 +818,9 @@ export default { console.log(e) loading.close() } + } catch (e) { + console.log(e) + } }, async handleClose() { this.$emit('close')