|
@@ -208,10 +208,12 @@ export default {
|
|
|
let index = row.systemFiles.findIndex(item=>{
|
|
|
return item.uid == file.uid
|
|
|
})
|
|
|
+ let guid = response.data[0]
|
|
|
if(index != -1){
|
|
|
+ file.raw.guid = guid
|
|
|
row.systemFiles.splice(index,1,file.raw)
|
|
|
}
|
|
|
- row.fileGuids.push(response.data[0])
|
|
|
+ row.fileGuids.push(guid)
|
|
|
}
|
|
|
})
|
|
|
},
|