需要使用到bootstrapTable中cellStyle进行设置,在bootstrapTable绑定数据中在对应的columns里面添加cellStyle
columns: [
{
title:”机号”,
field:”regNo”,
cellStyle:function(value,row,index){
if (value=="B2330"){
return {css:{"background-color":"red"}}
}else{
return {css:{"background-color":"green"}}
}
}
},
{
title: “航班日期”,
field: “flightDate”
}]