|
@@ -316,7 +316,10 @@ export default {
|
|
|
this.uploadVisible = true
|
|
|
console.log(val)
|
|
|
this.imgId = i
|
|
|
- this.defaultApplicationFileList = this.BaseTool.UPLOAD.transImg(val.images)
|
|
|
+ this.defaultApplicationFileList = this.BaseTool.UPLOAD.transImg(val.images.map((item, i) => {
|
|
|
+ item.id = i
|
|
|
+ return item
|
|
|
+ }))
|
|
|
console.log(this.defaultApplicationFileList)
|
|
|
console.log(this.applicationFileList)
|
|
|
},
|