element UI 的 el-table 设置只能单选效果

一、el-table加上 @selection-change="selectedChange",并加上<el-table-column type="selection" width="60" align="center"></el-table-column>选择行
<el-table ref="table" class="elTable" :data="data" border  @selection-change="selectionChange">
      <el-table-column  type="selection" width="40" align="center"></el-table-column>
      <el-table-column v-for="(item, index) in columns" :key="index" align="center" :prop="item.key" :label="item.value">
        <template slot-scope="scope">
          <p>{{ scope.row[item.key] }}</p>
        </template>
      </el-table-column>
    </el-table>
二、methods加上方法:
selectionChange(list) {
      this.selectionList = [];
      if (list.length > 1) {
        this.$refs.table.clearSelection();
        this.$refs.table.toggleRowSelection(
          list[list.length - 1]
        );
      }
      this.selectionList = [list[list.length - 1]];
}
三、隐藏全选的按钮
/**找到表头那一行,然后把里面的复选框隐藏掉**/
/deep/ .elTable .el-table__header-wrapper .el-checkbox {
  display: none;
}
/**
*** 因为我们的需求是去掉复选框顶部的全选按钮后,需要填充别的文字,
*** 所以才添加了下面的这个样式, 这个样式按需添加
**/
/deep/ .elTable .el-table__header-wrapper .el-table-column--selection.el-table__cell .cell:before {
   content: "主键";
}
四、效果如下
效果图
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容