diff --git a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue index dcb2cc86..973f8d89 100644 --- a/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue +++ b/src/views/trials/trials-panel/visit/crc-upload/components/uploadDicomFiles2.vue @@ -759,7 +759,8 @@ export default { SubjectInfo: {}, failedFileCount: 0, fileSize: 0, - fileCount: 0 + fileCount: 0, + isInit: false }, uploadState: { @@ -1101,7 +1102,7 @@ export default { IsDicomReUpload: scope.uploadQueues[index].uploadState.AllowReUpload }).then(async res => { scope.uploadQueues[index].dicomInfo.failedFileCount = 0 - scope.uploadQueues[index].dicomInfo.isInit = true + scope.$set(scope.uploadQueues[index].dicomInfo, 'isInit', true) let dicomInfo = scope.uploadQueues[index].dicomInfo let seriesNum = scope.uploadQueues[index].seriesList.length let fileNum = scope.uploadQueues[index].fileList.length @@ -1165,7 +1166,7 @@ export default { return new Promise(async resolve1 => { try { let o = v.instanceList[ii] - let name = `${v.instanceList[ii].instanceUid}_${v.instanceList[ii].file.webkitRelativePath}` + let name = `${v.instanceList[ii].file.webkitRelativePath}_${v.instanceList[ii].instanceUid}` if (o.isReUpload) { dicomInfo.failedFileCount++ Record.Existed.push(name)