Element UI 是一套采用 Vue 2.0 作为基础框架实现的组件库,一套为开发者、设计师和产品经理准备的基于 Vue 2.0 的组件库,提供了配套设计资源,帮助网站快速成型.

设置样式隐藏表格上面总的选框

thead .el-table-column--selection .cell{
    display: none;
}

在这里插入图片描述

table加上@selection-change="handleSelectionChange",ref设置个Table作为ref引用

<el-table
	ref="Table"
	:data="apprItemData"
	:header-cell-style="headClass"
             @selection-change="handleSelectionChange"
             row-key="apprItem"
             :tree-props="{children: 'children'}"
             height="420"
	border>
</el-table>

methods加上方法:

 handleSelectionChange(val){
	console.log("selection rows:"+val);
     if (val.length > 1) {
         this.$refs.Table.clearSelection()
         this.$refs.Table.toggleRowSelection(val.pop())
     }
}

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐