diff --git a/src/views/trials/trials-panel/reading/dicoms/components/StudyList.vue b/src/views/trials/trials-panel/reading/dicoms/components/StudyList.vue index d0d42098..eaf3c793 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/StudyList.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/StudyList.vue @@ -69,18 +69,18 @@ >
-
-
{{ instance.InstanceNumber }}
-
{{ `${instance.NumberOfFrames > 0 ? instance.NumberOfFrames : 1} frame` }}
-
+ v-for="(instance, idx) in series.instanceInfoList" + :key="instance.Id" + class="frame_content" + :style="{'margin-bottom':idx +
+
{{ instance.InstanceNumber }}
+
{{ `${instance.NumberOfFrames > 0 ? instance.NumberOfFrames : 1} frame` }}
+
-
+
@@ -621,12 +621,9 @@ export default { this.studyIndex = studyIndex this.seriesIndex = seriesIndex this.studyList[studyIndex].SeriesList[seriesIndex].measureData = this.measureData -<<<<<<< HEAD - var dicomStatck = this.studyList[studyIndex].SeriesList[seriesIndex] -======= // var dicomStatck = this.studyList[studyIndex].SeriesList[seriesIndex] - var dicomStatck = Object.assign({},this.studyList[studyIndex].SeriesList[seriesIndex]) ->>>>>>> uat + var dicomStatck = Object.assign({}, this.studyList[studyIndex].SeriesList[seriesIndex]) + dicomStatck.imageIdIndex = 0 this.$emit('loadImageStack', dicomStatck) if (!series.loadStatus && series.modality !== 'SR') { @@ -677,16 +674,12 @@ export default { } } else { imageIds.push(`wadouri:${localStorage.getItem('location') !== 'USA' ? this.OSSclientConfig.basePath : this.OSSclientConfig.basePath}${instanceInfo.Path}?instanceId=${instanceInfo.Id}&visitTaskId=${this.visitTaskId}&idx=${studyIndex}|${seriesIndex}|${idx}`) -<<<<<<< HEAD } -======= - } ->>>>>>> uat this.studyIndex = studyIndex this.seriesIndex = seriesIndex this.studyList[studyIndex].SeriesList[seriesIndex].measureData = this.measureData // var dicomStatck = this.studyList[studyIndex].SeriesList[seriesIndex] - var dicomStatck = Object.assign({},this.studyList[studyIndex].SeriesList[seriesIndex]) + var dicomStatck = Object.assign({}, this.studyList[studyIndex].SeriesList[seriesIndex]) dicomStatck.imageIds = imageIds dicomStatck.imageIdIndex = 0 this.$emit('loadImageStack', dicomStatck)