RuoYi
2021-07-27 0dff71bd4ddf0834f1e88401fb584b5fa03e1fbf
ruoyi-ui/src/components/ImageUpload/index.vue
@@ -111,7 +111,7 @@
  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));
    },