后处理上传处理
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
6e6e2d11d0
commit
2d99e074b8
|
|
@ -112,7 +112,7 @@
|
|||
</div>
|
||||
<div style="display: inline-block; margin-right: 2px">
|
||||
<span v-if="scope.row.dicomInfo.modality.length > 0">{{ scope.row.dicomInfo.modality.join('、')
|
||||
}},</span>
|
||||
}},</span>
|
||||
<span v-else style="color: #f44336">N/A,</span>
|
||||
</div>
|
||||
<div style="display: inline-block; margin-right: 2px">
|
||||
|
|
@ -1130,6 +1130,7 @@ export default {
|
|||
return new Promise(function (resolve, reject) {
|
||||
try {
|
||||
let subjectVisitId = null
|
||||
let dicomInfo = {}
|
||||
if (scope.VisitTaskId) {
|
||||
scope.StudyInstanceUidList.forEach((item) => {
|
||||
if (item.VisitTaskId === scope.VisitTaskId) {
|
||||
|
|
@ -1159,7 +1160,7 @@ export default {
|
|||
.then(async (res) => {
|
||||
scope.uploadQueues[index].dicomInfo.failedFileCount = 0
|
||||
scope.$set(scope.uploadQueues[index].dicomInfo, 'isInit', true)
|
||||
let dicomInfo = scope.uploadQueues[index].dicomInfo
|
||||
dicomInfo = scope.uploadQueues[index].dicomInfo
|
||||
let seriesNum = scope.uploadQueues[index].seriesList.length
|
||||
let fileNum = scope.uploadQueues[index].fileList.length
|
||||
let seriesList = scope.uploadQueues[index].seriesList
|
||||
|
|
@ -1206,7 +1207,7 @@ export default {
|
|||
patientId: dicomInfo.patientId,
|
||||
patientName: '',
|
||||
patientAge: dicomInfo.patientAge,
|
||||
patientSex: config.DicomStoreInfo.SubjectSex || dicomInfo.patientSex,
|
||||
patientSex: config?.DicomStoreInfo.SubjectSex || dicomInfo.patientSex,
|
||||
accessionNumber: dicomInfo.accNumber,
|
||||
patientBirthDate: '',
|
||||
acquisitionTime: dicomInfo.acquisitionTime,
|
||||
|
|
|
|||
Loading…
Reference in New Issue