医学审核下载
continuous-integration/drone/push Build is passing Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-09-10 18:32:46 +08:00
parent 9402501c0b
commit 9653e4478b
1 changed files with 12 additions and 4 deletions

View File

@ -172,6 +172,10 @@ export default {
type: String, type: String,
default: '', default: '',
}, },
TaskId: {
type: String,
default: '',
},
SubjectCode: { SubjectCode: {
type: String, type: String,
default: '', default: '',
@ -223,6 +227,9 @@ export default {
this.searchData.TrialReadingCriterionId = this.searchData.TrialReadingCriterionId =
this.Criterion.TrialReadingCriterionId this.Criterion.TrialReadingCriterionId
this.searchData.SubjectCode = this.SubjectCode this.searchData.SubjectCode = this.SubjectCode
if (this.TaskId) {
this.searchData.VisitTaskId = this.TaskId
}
this.loading = true this.loading = true
let res = await getSubjectImageDownloadSelectList(this.searchData) let res = await getSubjectImageDownloadSelectList(this.searchData)
this.loading = false this.loading = false
@ -339,10 +346,11 @@ export default {
series.InstancePathList.forEach((instance) => { series.InstancePathList.forEach((instance) => {
let fileName = instance.Path.split('/').pop() let fileName = instance.Path.split('/').pop()
let obj = { let obj = {
name: `${data.SubjectCode}/${data.TaskBlindName}/${this.$fd( name: `${data.SubjectCode}/${
'IsDicom', data.TaskBlindName
true }/${this.$fd('IsDicom', true)}/${
)}/${study.StudyCode}/${fileName}`, study.StudyCode
}/${fileName}`,
url: this.OSSclientConfig.basePath + instance.Path, url: this.OSSclientConfig.basePath + instance.Path,
} }
files.push(obj) files.push(obj)