修复多图组件验证失败被删除问题

master
RuoYi 3 years ago
parent 15abd4d053
commit 04c340627d
  1. 6
      ruoyi-ui/src/components/ImageUpload/index.vue

@ -117,8 +117,10 @@ export default {
// //
handleRemove(file, fileList) { handleRemove(file, fileList) {
const findex = this.fileList.map(f => f.name).indexOf(file.name); const findex = this.fileList.map(f => f.name).indexOf(file.name);
this.fileList.splice(findex, 1); if(findex > -1) {
this.$emit("input", this.listToString(this.fileList)); this.fileList.splice(findex, 1);
this.$emit("input", this.listToString(this.fileList));
}
}, },
// //
handleUploadSuccess(res) { handleUploadSuccess(res) {

Loading…
Cancel
Save