关于element-ui:在table列表中通过按钮移除某条数据

37次阅读

共计 273 个字符,预计需要花费 1 分钟才能阅读完成。

需要: 前提是 table 展现 list 数组的全副数据,要求移除操作后,在 list 数组中删除该条数据。

// 移除办法
deleteBatch(elecId) {console.log(this.valList, 'valList1'); // 移除前数组
  this.valList.forEach((value, index, array) => {if (value.elecId == elecId) {  // 判断条件
      array.splice(index, 1) // 删除符合条件的数据
    }
  })
  console.log(this.valList, 'valList2'); // 移除后数组
},

正文完
 0