用于解决 展示图片列表 跟提交数据 使用数据不一样的问题 handlexxRemove(file, fileList) { //删除 let url = file.response.url; let idx = this.ruleForm.brand_body_img.findIndex(e=>e==url); //获取删除元素的下标 this.ruleForm.list.splice(idx,1) //执行删除操作 console.log(this.ruleForm.list) },