el-table el-column selection disable


几个要点:

1.通过 selectable 绑定

2.绑定的方法只能返回0/1

               <el-table-column
                    type="selection"
                    width="55"
                    :selectable="checkbox_select">
                </el-table-column>
           checkbox_select(row, index){
                if (this.$MyComm.isEmpty(row.bug_id)){
                    return 0
                }else {
                    return 1
                }

参考文档:https://blog.csdn.net/rickiyeat/article/details/76595263


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM