#I1FWLV bug:修复图片素材库批量上传多张,只会成功1-2张。
This commit is contained in:
@ -199,6 +199,7 @@
|
|||||||
materialgroupObj: {},
|
materialgroupObj: {},
|
||||||
materialgroupLoading: false,
|
materialgroupLoading: false,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
|
resultNumber: 0,
|
||||||
page: {
|
page: {
|
||||||
total: 0, // 总页数
|
total: 0, // 总页数
|
||||||
currentPage: 1, // 当前页数
|
currentPage: 1, // 当前页数
|
||||||
@ -419,6 +420,7 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleProgress(event, file, fileList) {
|
handleProgress(event, file, fileList) {
|
||||||
|
console.log(event)
|
||||||
// let uploadProgress = file.percentage.toFixed(0)
|
// let uploadProgress = file.percentage.toFixed(0)
|
||||||
// this.uploadProgress = uploadProgress
|
// this.uploadProgress = uploadProgress
|
||||||
},
|
},
|
||||||
@ -430,8 +432,12 @@
|
|||||||
groupId: this.groupId != '-1' ? this.groupId : null,
|
groupId: this.groupId != '-1' ? this.groupId : null,
|
||||||
name: file.name,
|
name: file.name,
|
||||||
url: response.link
|
url: response.link
|
||||||
}).then(function() {
|
}).then(() => {
|
||||||
|
this.resultNumber++
|
||||||
|
if (fileList.length === this.resultNumber) {
|
||||||
that.getPage(that.page)
|
that.getPage(that.page)
|
||||||
|
this.resultNumber = 0
|
||||||
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
beforeUpload(file) {
|
beforeUpload(file) {
|
||||||
|
Reference in New Issue
Block a user