diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue index 8ee76602..4b3b76b3 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionForm.vue @@ -528,6 +528,8 @@ export default { } if (this.answers.SplitOrMergeLesionName && parseInt(this.answers.SplitOrMergeType) === 0) { arr.push(`(Split from ${this.answers.SplitOrMergeLesionName})`) + } else if (this.answers.MeltingInToLesionMarks && parseInt(this.answers.SplitOrMergeType) === 1) { + arr.push(`(Merge to ${this.answers.MeltingInToLesionMarks})`) } return arr.join(' ') }, diff --git a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionList.vue b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionList.vue index 7ac36f4b..e909fdbf 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionList.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/Lugano/QuestionList.vue @@ -64,7 +64,13 @@
+
+ +
+
+
{{ item.TableQuestions.Answers[i].lesionPart }} @@ -1301,6 +1307,15 @@ export default { .lesion_list{ position: relative; } + .login-cycle{ + width: 5px; + height: 5px; + display: inline-block; + background-color: #428bca; + border-radius: 50%; + margin-right: 2px; + margin-bottom: 2px; + } .el-collapse{ border-bottom:none; border-top:none;