!259 图片上传 - 多图时无法删除相应图片修复

Merge pull request !259 from 严俊东/N/A
This commit is contained in:
若依 2021-07-13 02:26:10 +00:00 committed by Gitee
commit 25d9edd5c9
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ export default {
methods: {
//
handleRemove(file, fileList) {
const findex = this.fileList.indexOf(file.name);
const findex = this.fileList.map(f => f.name).indexOf(file.name);
this.fileList.splice(findex, 1);
this.$emit("input", this.listToString(this.fileList));
},