多选
type设置selectable
,也就是我们表格的选择框 绑定了一个selectable
<el-table
:data="tableData"
ref="table"
@row-click='rowClick'
:row-class-name="tableRowClassName"
>
<el-table-column
type="selection"
:selectable="selected"
width="55">
</el-table-column>
<el-table-column
prop="name"
label="名称"
width="180">
</el-table-column>
</el-table>
selected(row, index) {
if (row.status == 1) { // 根据你的条件来设置
return true //可选择
} else {
return false; //不可选择
}
}
第一个参数是当前这一条数据的对象,第二个是下标
然后方法返回true 则代表这条数据可选,为false则不可选
还有一种方法,请查看我之前的文章
单选
el-table:row-class-name="tableRowClassName"
,用来设置当前行的样式
el-radio:disabled="!checkSelectable(scope.row)"
,用来置灰单选框
methods方法:tableRowClassName 定义class类名,row是当前行的数据,设置判断条件
<el-table border :data="tableData" row-key="id" :row-class-name="tableRowClassName">
<el-table-column label="请选择" width="80">
<template slot-scope="scope">
<el-radio
v-mode1="form.selectRadio"
:disabled="!checkSelectable(scope.row)"
:label="scope.row.id"
@click.native.stop.prevent="getcurrentRow(scope.row)"
> </el-radio>
</template>
</el-table-column>
</el-table>
tableRowClassName ({row, rowIndex}) {
if (!row.status) {
return 'disabledRow'
} else {
return ''
}
},
checkSelectable (row) {
return row.status
}
css设置
/deep/ .disabledRow {
cursor: not-allowed;
pointer-events: none;
color: #ccc; // 这个会更改当前行的字体颜色,如果不需要可以删掉
}