diff --git a/src/components/Dicom/DicomCanvas.vue b/src/components/Dicom/DicomCanvas.vue index 596c4507..68d8a4c7 100644 --- a/src/components/Dicom/DicomCanvas.vue +++ b/src/components/Dicom/DicomCanvas.vue @@ -34,8 +34,8 @@
-
{{ series.subjectCode }}
-
{{ series.visitName }}
+
{{ series.subjectCode }}
+
{{ series.visitName }}
{{ stack.description }}
@@ -174,7 +174,8 @@ export default { orientationMarkers: [], originalMarkers: [], dcmTag: { visible: false, title: this.$t('trials:dicom-tag:title') }, - tip: '' + tip: '', + IsReadingTaskViewInOrder: 2 } }, @@ -182,6 +183,9 @@ export default { this.type = this.$router.currentRoute.query.type ? this.$router.currentRoute.query.type : '' + if (this.$router.currentRoute.query.IsReadingTaskViewInOrder) { + this.IsReadingTaskViewInOrder = Number(this.$router.currentRoute.query.IsReadingTaskViewInOrder) + } this.canvas = this.$refs.canvas this.canvas.addEventListener('cornerstonenewimage', this.onNewImage) this.canvas.addEventListener( diff --git a/src/components/downloadDicomAndNonedicom/index.vue b/src/components/downloadDicomAndNonedicom/index.vue index 7f08671f..98c5242b 100644 --- a/src/components/downloadDicomAndNonedicom/index.vue +++ b/src/components/downloadDicomAndNonedicom/index.vue @@ -33,7 +33,7 @@ + show-overflow-tooltip v-if="isReadingTaskViewInOrder !== 0" /> @@ -78,7 +78,7 @@ + :IsImageSegment="IsImageSegment" :Criterion="Criterion" :IsReadingTaskViewInOrder="isReadingTaskViewInOrder" />