上传bug修复
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
5f04be3277
commit
16b3c1e6af
|
@ -759,7 +759,8 @@ export default {
|
||||||
SubjectInfo: {},
|
SubjectInfo: {},
|
||||||
failedFileCount: 0,
|
failedFileCount: 0,
|
||||||
fileSize: 0,
|
fileSize: 0,
|
||||||
fileCount: 0
|
fileCount: 0,
|
||||||
|
isInit: false
|
||||||
},
|
},
|
||||||
|
|
||||||
uploadState: {
|
uploadState: {
|
||||||
|
@ -1101,7 +1102,7 @@ export default {
|
||||||
IsDicomReUpload: scope.uploadQueues[index].uploadState.AllowReUpload
|
IsDicomReUpload: scope.uploadQueues[index].uploadState.AllowReUpload
|
||||||
}).then(async res => {
|
}).then(async res => {
|
||||||
scope.uploadQueues[index].dicomInfo.failedFileCount = 0
|
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 dicomInfo = scope.uploadQueues[index].dicomInfo
|
||||||
let seriesNum = scope.uploadQueues[index].seriesList.length
|
let seriesNum = scope.uploadQueues[index].seriesList.length
|
||||||
let fileNum = scope.uploadQueues[index].fileList.length
|
let fileNum = scope.uploadQueues[index].fileList.length
|
||||||
|
@ -1165,7 +1166,7 @@ export default {
|
||||||
return new Promise(async resolve1 => {
|
return new Promise(async resolve1 => {
|
||||||
try {
|
try {
|
||||||
let o = v.instanceList[ii]
|
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) {
|
if (o.isReUpload) {
|
||||||
dicomInfo.failedFileCount++
|
dicomInfo.failedFileCount++
|
||||||
Record.Existed.push(name)
|
Record.Existed.push(name)
|
||||||
|
|
Loading…
Reference in New Issue