element-ui表格实现选中删除功能

最近项目中用到了一个功能是,选中删除并且不调接口,最后实现保存成功。
这里运用到了 ob 对象。

直接贴代码:

//删除附件
attachDelete() {
//点击删除按钮时,先判断时候选中
if (this.selectAttach.length == 0) {
this.$message.warning(“请选择删除数据!”);
return;
}
//选中删除的方法
[…this.selectAttach.map((n) => n.ob.dep.id)].forEach((n) => {
this.attachTableData.some((item, index) => {
if (item.ob.dep.id == n) {
this.attachTableData.splice(index, 1);
return true;
} else return false;
});
});
},

你可能感兴趣的:(框架,前端整理,vue)