From 78624d9ccea149992fa1d47a7660a24b84979a1c Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Mon, 27 Jul 2026 14:28:55 +0800 Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E4=B8=AD=E4=B8=8A=E4=BC=A0?= =?UTF-8?q?=E5=BD=B1=E5=83=8F=E9=9C=80=E8=A6=81=E5=9C=A8=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E5=BD=B1=E5=83=8F=E5=90=8E=E6=89=8D=E8=83=BD=E4=B8=8A=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../downloadDicomAndNonedicom/index.vue | 7 ++++++ .../uploadDicomAndNonedicom/dicomFile.vue | 13 +++++++--- .../uploadDicomAndNonedicom/index.vue | 9 +++++-- .../uploadDicomAndNonedicom/nonedicomFile.vue | 10 ++++++-- .../reading/dicoms/components/DicomViewer.vue | 24 +++++++++---------- .../reading/dicoms3D/components/ReadPage.vue | 5 ++-- 6 files changed, 47 insertions(+), 21 deletions(-) diff --git a/src/components/downloadDicomAndNonedicom/index.vue b/src/components/downloadDicomAndNonedicom/index.vue index 98c5242b..49bd1582 100644 --- a/src/components/downloadDicomAndNonedicom/index.vue +++ b/src/components/downloadDicomAndNonedicom/index.vue @@ -141,6 +141,10 @@ export default { type: Number, default: 2, }, + isReading: { + type: Boolean, + default: false, + } }, data() { return { @@ -442,6 +446,9 @@ export default { let params = { TrialImageDownloadId: this.downloadId, } + if (this.isReading) { + params.VisitTaskId = this.TaskId + } await downloadImageSuccess(params) } catch (err) { console.log(err) diff --git a/src/components/uploadDicomAndNonedicom/dicomFile.vue b/src/components/uploadDicomAndNonedicom/dicomFile.vue index d0cee4c1..8187cc0f 100644 --- a/src/components/uploadDicomAndNonedicom/dicomFile.vue +++ b/src/components/uploadDicomAndNonedicom/dicomFile.vue @@ -43,7 +43,8 @@