企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
> 表格当中是否可以勾选 ``` <el-table-column type="selection" width="55" :selectable="selectable"></el-table-column> ``` ``` methods: { selectable(row, index) { // 有ID才能选,为空没ID则不能选择 if(row.yunId == "") { // console.log('不能选择该用户') <!-- false为不能选用 --> return false }else { // console.log('可以选择该用户') <!-- true为不能选用 --> return true } }, } ```