如何在element-ui table 取到对应的ID的最后一个对象
Posted Angel-01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在element-ui table 取到对应的ID的最后一个对象相关的知识,希望对你有一定的参考价值。
来回切换3个状态值如何得到对应ID的最后一个对象
var is_push = () => {
for (var i = 0; i < this.form.FaultDevices.length; i++) {
if (this.form.FaultDevices[i].ID === row.ID) {
return i;
}
}
return -1;
}
var index = is_push()
if (value !== -1) {
var data = {
FGuid: "",
ID: row.ID,
DeviceId: row.DeviceId,
HandleState: value
}
if (index !== -1) {
this.form.FaultDevices[index] = data
} else {
this.form.FaultDevices.push(data)
}
} else {
if (index !== -1) {
this.form.FaultDevices.splice(index, 1);
}
}
以上是关于如何在element-ui table 取到对应的ID的最后一个对象的主要内容,如果未能解决你的问题,请参考以下文章
Element-ui Table tree 结构使用(解决无展开箭头)
2021-08-13 解决element-ui resetFields 无效的问题