问题描述: 当前需要表格下有的列数据不可选 解决方案: columns: [ { checkbox: true, disabled: true, formatter: function (value, row) { if(row.kbtype == null){ // 设置不可选 return { disabled: 'disabled' }; // 设置默认选中 // return { checked: true }; } } } ]