element中获取选中行元素的ID

时间:2024-03-21 21:43:04
页面效果:

element中获取选中行元素的ID

接口说明

element中获取选中行元素的ID

使用table中selection-change方法获取当前记录的信息,去重获取选中记录的id

@selection-change=“handleSelectionChangePeople”

 handleSelectionChangePeople(val){
     console.log("人员信息val-",val);
      this.multipleSelection = [];
      for (let i = 0; i < val.length; i++) {
          if (this.multipleSelection.indexOf(val[i].userId) === -1) {
              this.multipleSelection.push(val[i].userId)
          }
      }
     console.log("人员信息val--人员选中-",this.multipleSelection);
  },

element中获取选中行元素的ID