带选择框的表格 html,element带选择表格将表头的复选框改成文字的实现代码

932810d918e90e8105995b9c12075429.png

方法一:使用表格属性:header-cell-class-name 表格界面代码

ref="multipleTable"

:data="tableData"

:header-cell-class-name="cellclass"

style="width: 100%">

type="selection">

label="日期"

width="120">

{{ scope.row.date }}

prop="name"

label="姓名"

width="120">

prop="address"

label="地址"

>

对应js

data() {

return {

tableData: [{

date: '2016-05-03',

name: '王小虎',

address: '上海市普陀区金沙江路 1518 弄'

}, {

date: '2016-05-02',

name: '王小虎',

address: '上海市普陀区金沙江路 1518 弄'

}],

multipleSelection: []

}

},

methods: {

cellclass(row){

if(row.columnIndex===0){

return 'DisabledSelection'

}

}

}

对应CSS

.el-table /deep/.DisabledSelection .cell .el-checkbox__inner{

display:none;

position:relative;

}

.el-table /deep/.DisabledSelection .cell:before{

content:"选择";

position:absolute;

right 11px;

}

/deep/的作用:如果你使用了别人的组件或者自己开发一个组件,有时候你修改一处就可能影响到别的地方,这个时候要么你不用别人的组件,自己重新封装一个,但很多时候是不太现实的,所以就需要使用/deep/,既不影响到别的地方,又能修改子组件在当前的样式。

方法二、使用表格列标题属性:label-class-name

界面代码

ref="multipleTable"

:data="tableData"

style="width: 100%"

@selection-change="handleSelectionChange">

type="selection">

label="日期"

width="120">

{{ scope.row.date }}

prop="name"

label="姓名"

width="120">

prop="address"

label="地址"

show-overflow-tooltip>

对应CSS

.el-table /deep/.DisabledSelection .cell .el-checkbox__inner{

display:none;

position:relative;

}

.el-table /deep/.DisabledSelection .cell:before{

content:"选择";

position:absolute;

right 11px;

}

方法三:使用document.querySelector() 界面代码

ref="multipleTable"

:data="tableData"

style="width: 100%"

@selection-change="handleSelectionChange">

type="selection">

label="日期"

width="120">

{{ scope.row.date }}

prop="name"

label="姓名"

width="120">

prop="address"

label="地址"

show-overflow-tooltip>

对应js

mounted(){

this.$nextTick(()=>{

this.init();

})

},

methods: {

init(){

document.querySelector(".el-checkbox__inner").style.display="none";

document.querySelector(".cell").innerHTML = '选择'

}

}

方法四:不使用selection选择列,重写列使用checkbox

:data="tableData"

style="width: 100%">

prop="date"

label="选择"

width="50">

prop="name"

label="姓名"

width="180">

prop="address"

label="地址">

方法五:直接通过CSS样式修改

.el-table__header .el-table-column--selection .cell .el-checkbox {

display:none

}

.el-table__header .el-table-column--selection .cell:before {

content: "选择";

}

总结

到此这篇关于element带选择表格将表头的复选框改成文字的文章就介绍到这了,更多相关选择表格将表头的复选框改成文字内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值