element ui中 el-table根据不同的值设置单元格背景色




//修改单元格样式的方法
addClass({row,column,rowIndex,columnIndex}){
   if(columnIndex === 5){
      if(row.goodsname == '测试'){
          return 'cell-grey';
      }
   }
},
 

.cell-grey{
    background: #f2f2f2;
}

 

你可能感兴趣的:(vue)