From cf367956512d98b752a67fa995b751c9717d37a1 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 27 Aug 2026 10:12:47 +0800 Subject: [PATCH] =?UTF-8?q?IVUS=E5=92=8COCT=E4=B8=8A=E4=BC=A0=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E6=A0=A1=E9=AA=8C=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/load.js | 4 ++-- src/components/downloadDicomAndNonedicom/index.vue | 10 +++++----- src/components/uploadDicomAndNonedicom/dicomFile.vue | 3 ++- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/api/load.js b/src/api/load.js index 97e44a79..9cdd9fef 100644 --- a/src/api/load.js +++ b/src/api/load.js @@ -81,11 +81,11 @@ export function verifyIRStudyAllowUpload(data) { }) } // 影像下载成功确认 -export function downloadImageSuccess(params) { +export function downloadImageSuccess(data) { return request({ url: '/DownloadAndUpload/downloadImageSuccess', method: 'post', - params + data }) } // 影像下载记录列表 diff --git a/src/components/downloadDicomAndNonedicom/index.vue b/src/components/downloadDicomAndNonedicom/index.vue index 4ff5820c..6fa04662 100644 --- a/src/components/downloadDicomAndNonedicom/index.vue +++ b/src/components/downloadDicomAndNonedicom/index.vue @@ -297,7 +297,7 @@ export default { if (res.IsSuccess) { this.downloadId = res.OtherInfo.PreDownloadId this.IsReadingTaskViewInOrder = res.OtherInfo.IsReadingTaskViewInOrder - this.downloadImage(res.Result) + this.downloadImage(res.Result, data.SubjectVisitTaskList) } } catch (err) { this.btnLoading = false @@ -305,12 +305,12 @@ export default { } }, // 打包下载 - async downloadImage(data) { + async downloadImage(data, params) { try { let { files, name, fileType } = this.formatDownloadFile(data) let res = await downLoadFile(files, name, 'zip') if (res && this.downloadId) { - this.downloadImageSuccess() + this.downloadImageSuccess(params) } } catch (err) { console.log(err) @@ -449,13 +449,13 @@ export default { return { files, name } }, // 影像下载成功确认 - async downloadImageSuccess() { + async downloadImageSuccess(data) { try { let params = { TrialImageDownloadId: this.downloadId, } if (this.isReading) { - params.VisitTaskId = this.TaskId + params.VisitTaskIdList = data.map(item => item.TaskId) } await downloadImageSuccess(params) } catch (err) { diff --git a/src/components/uploadDicomAndNonedicom/dicomFile.vue b/src/components/uploadDicomAndNonedicom/dicomFile.vue index 569281fa..79dfe8ef 100644 --- a/src/components/uploadDicomAndNonedicom/dicomFile.vue +++ b/src/components/uploadDicomAndNonedicom/dicomFile.vue @@ -8,7 +8,8 @@ - +