bootstrap table checkbox 根据值选中、禁用等

{

checkbox: true,

formatter: function (value, row, index) {

if(row.ISTOPIC === 1){

return {

disabled : false,

}

}else{

return {

disabled : true,

}

}

return row.ID;

}

}