elementui的table复选框(含多选框)禁用例子
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
说明:做了个表格的禁用操作,记录一些复选和多选的禁用操作;
原文链接:https://www.cnblogs.com/heisetianshi/p/17663286.html
一、复选框禁用
<el-table-column
type="selection"
width="80"
align="center"
:selectable="selectable"
></el-table-column>
// 禁用table中的复选框(不包括全选,false为禁用)
selectable () {
return false
},
二、多选框禁用
<el-table :header-cell-class-name="cellClass" />
// table中全选按钮的隐藏
cellClass () {
if (this.disabled) { // 此处可以根据需求做判断
return 'selectAllbtnDis'
}
},
::v-deep .selectAllbtnDis .cell .el-checkbox__inner {
display: none;
}
需要全部禁用时,全选按钮隐藏;不需要全部禁用时,全选按钮展示;
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献10条内容
所有评论(0)