el-table表格单选按钮

Posted yanggb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了el-table表格单选按钮相关的知识,希望对你有一定的参考价值。

element-ui提供的表格组件是有单选功能的,只是组织形式是以选中行高亮的方式,有一些人会觉得不够明显,因此稍微变通一下,在每一行前加上radio单选按钮。

<el-table ref="ridioTable" :data="tableData" tooltip-effect="dark" height="255" style="width: 100%" @current-change="clickChange">
  <el-table-column label="选择" width="55">
    <template slot-scope="scope">
      <el-radio v-model="tableRadio" :label="scope.row"><i></i></el-radio>
    </template>
  </el-table-column>
   <el-table-column prop="code" label="编号" header-align="center" align="center"></el-table-column>
   <el-table-column prop="name" label="名称" header-align="center" align="center"></el-table-column>
</el-table>
clickChange (item) {
  this.tableRadio = item
}

实现的原理就是将当前选中行绑定到<el-radio>中。

 

"除了你,再也没有别人能给我一枝一叶的欣喜。"

以上是关于el-table表格单选按钮的主要内容,如果未能解决你的问题,请参考以下文章

如何以编程方式更改表格单元格中单选按钮组的单选按钮?

ElementUI el-table 表格 行选择框改为单选

单选按钮以片段形式传递数据

表格内的单选按钮

如何删除表格视图单元格中单选按钮的索引路径?

DW里面在表格里加表单,单选按钮的问题