el-table 控制行勾选

有的时候需要根据后端数据来控制表格的勾选状态,可以用以下方式实现


    
                              
this.orderProductList.forEach(row => {
  if (row.refundOrderSubId != null) {
     this.$nextTick(function(){
        this.$refs.orderRefundProductTable.toggleRowSelection(row);
     })
}});

 

你可能感兴趣的:(vue)