From 45f83322ecc1cfa07083528fd55457d1b747737d Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Thu, 5 Jun 2025 18:32:22 +0800 Subject: [PATCH] 1 --- .../reading/dicoms/customize/CustomizeQuestionsPreview.vue | 2 +- .../reading/dicoms3D/components/customize/QuestionList.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeQuestionsPreview.vue b/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeQuestionsPreview.vue index 0fc1ee59..29e4f5dc 100644 --- a/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeQuestionsPreview.vue +++ b/src/views/trials/trials-panel/reading/dicoms/customize/CustomizeQuestionsPreview.vue @@ -233,7 +233,7 @@ export default { this.questionForm[v] = '' }, setFormItemData(obj) { - this.$set(this.questionForm, obj.key, obj.val) + this.$set(this.questionForm, obj.key, JSON.parse(JSON.stringify(obj.val))) this.classArr.map(i=>{ if (i.triggerId === obj.key) { let answer = null diff --git a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue index 4afa0ff3..26270015 100644 --- a/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms3D/components/customize/QuestionList.vue @@ -326,7 +326,7 @@ export default { this.questionForm[v] = null }, setFormItemData(obj) { - this.$set(this.questionForm, obj.key, obj.val) + this.$set(this.questionForm, obj.key, JSON.parse(JSON.stringify(obj.val))) this.classArr.map(i => { if (i.triggerId === obj.key) { let answer = null