From 26914c2b2b1350e275e5b5d3181f3cb25b27e8be Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Fri, 18 Jul 2025 17:08:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BD=B1=E5=83=8F=E4=B8=BA=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E5=89=8D=E7=BD=91=E9=80=9F=E8=AE=A1=E7=AE=97=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=A4=A7=E5=B0=8F=E5=8F=96=E5=80=BC=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dicom/DicomCanvas.vue | 2 +- src/store/modules/reading.js | 2 +- src/views/dicom-show/dicom-study.vue | 2 +- src/views/dicom-show/dicom-visit.vue | 2 +- .../trials-panel/reading/dicoms/components/ReadPage.vue | 5 +++-- .../reading/dicoms/customize/CustomizeReadPage.vue | 1 + .../trials-panel/reading/dicoms3D/components/ReadPage.vue | 2 +- 7 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/components/Dicom/DicomCanvas.vue b/src/components/Dicom/DicomCanvas.vue index df5fa473..e07b92a9 100644 --- a/src/components/Dicom/DicomCanvas.vue +++ b/src/components/Dicom/DicomCanvas.vue @@ -123,7 +123,7 @@ export default { components: { DicomTags }, computed: { NSTip() { - return `${this.$store.state.trials.uploadSize},NS: ${this.$store.state.trials.uploadTip}` + return `${this.$store.state.trials.uploadSize}, NS: ${this.$store.state.trials.uploadTip}` } }, data() { diff --git a/src/store/modules/reading.js b/src/store/modules/reading.js index b1874ec5..c4d547d4 100644 --- a/src/store/modules/reading.js +++ b/src/store/modules/reading.js @@ -1076,7 +1076,7 @@ const actions = { let file = series.instanceInfoList.find(item => item.ImageId === obj.imageId) if (file) { getNetWorkSpeed() - setNetWorkSpeedSizeAll(obj.percentComplete, file.FileSize, obj.imageId) + setNetWorkSpeedSizeAll(obj.percentComplete, obj.FileTotal, obj.imageId) } if (prefetchInstanceCount >= instanceCount * 100) { series.prefetchInstanceCount = instanceCount * 100 diff --git a/src/views/dicom-show/dicom-study.vue b/src/views/dicom-show/dicom-study.vue index 24ced2b6..c6aaa622 100644 --- a/src/views/dicom-show/dicom-study.vue +++ b/src/views/dicom-show/dicom-study.vue @@ -861,7 +861,7 @@ export default { let file = this.seriesList[seriesIndex].instanceInfoList.find(item => item.ImageId === imageId) if (file && this.activeSeriesId === this.seriesList[seriesIndex].seriesId) { getNetWorkSpeed() - setNetWorkSpeedSize(percentComplete, file.FileSize, imageId) + setNetWorkSpeedSize(percentComplete, e.detail.total, imageId) } if (prefetchInstanceCount >= instanceCount * 100) { this.seriesList[seriesIndex].prefetchInstanceCount = instanceCount * 100 diff --git a/src/views/dicom-show/dicom-visit.vue b/src/views/dicom-show/dicom-visit.vue index 6fe076ff..78ba2223 100644 --- a/src/views/dicom-show/dicom-visit.vue +++ b/src/views/dicom-show/dicom-visit.vue @@ -921,7 +921,7 @@ export default { let file = series.instanceInfoList.find(item => item.ImageId === imageId) if (file && this.activeSeriesId === series.seriesId) { getNetWorkSpeed() - setNetWorkSpeedSize(percentComplete, file.FileSize, imageId) + setNetWorkSpeedSize(percentComplete, e.detail.total, imageId) } if (prefetchInstanceCount >= instanceCount * 100) { series.prefetchInstanceCount = instanceCount * 100 diff --git a/src/views/trials/trials-panel/reading/dicoms/components/ReadPage.vue b/src/views/trials/trials-panel/reading/dicoms/components/ReadPage.vue index 216123a0..5016e2ea 100644 --- a/src/views/trials/trials-panel/reading/dicoms/components/ReadPage.vue +++ b/src/views/trials/trials-panel/reading/dicoms/components/ReadPage.vue @@ -8,7 +8,8 @@