elementui中 table表格根据不同的值设置单元格背景色



.cell-grey{
    background: #f2f2f2;
}
addClass({row,column,rowIndex,columnIndex}){
   if(columnIndex === 5){
      if(row.goodsname == '测试'){
          return 'cell-grey';
      }
   }
},

更多内容,请关注公众号

elementui中 table表格根据不同的值设置单元格背景色_第1张图片

你可能感兴趣的:(web前端,elementui)