<el-table :data="tableData" @selection-change="handleSelectionChange" @select="radioHandle" height="250" highlight-current-row style="width: 100%" ref="tb" > // 多选变单选 handleSelectionChange(val) { if (val.length > 1) { this.$refs.tb.clearSelection(); this.$refs.tb.toggleRowSel...
Element el-table实现单选操作 在使用el-table实现选择操作的时候,官方提供了一种多选功能,将type设置为selection。而有时候因项目需求,需要进行单选操作,接下来通过一个简单的例子,实现el-table表格单选操作。显然要实现单选,需要用el-radio标签来实现,代码如下: <el-table ref="multipleTable" :data="tableData" :...
{let item=val[val.length-1];this.checkedSelection=JSON.parse(JSON.stringify(item));}// 单选选中多条时,需要清空所选数据if(val.length>1){this.$refs.multipleTable.clearSelection();// 清空选项this.$refs.multipleTable.toggleRowSelection(val.pop());// 选中最后点击的数据}// 取消选中if(val.len...
实现多选非常简单: 手动添加一个el-table-column,设type属性为selection即可。 多选效果 单选效果 注: 关注公众号 霸道的程序猿 获取编程相关电子书、教程推送与免费下载。 实现 实现多选 在el-table中添加一个el-table-column 设置类型为selection即可 <el-table v-loading="loading" :data="dkszList" @selection...
需求是使用el-table的多选功能,然后不想要多选改成单选。 代码 <template><divclass="contentBox"v-loading="loading"><el-table:data="list"ref="accountRef"@select="handleTableChange"><el-table-columntype="selection"width="45"></el-table-column><el-table-columnwidth="100"prop="name"></el-tab...
{// val选择两条的时候把第一条取消选择this.$refs.dataGrid.toggleRowSelection(val[0],false)this.current=val[1]}},selectAll(){// 不允许多选this.$refs.dataGrid.clearSelection()},rowDblclick(row){// 双击的时候 选中this.$refs.dataGrid.clearSelection()this.$refs.dataGrid.toggleRowSelection(row,...
el-table 多选添加限制只能选一个 遇到了新需求,el-table中的多选行限制显示成单选行,并且单击当前行的其他地方也要默认勾选当前行数据,使用radio又嫌弃太丑了,需要方框,那就只能在之前的多选框上面改造了 思路:勾选超过1条勾选第二条的时候做处理,将新勾选的设置选中,之前勾选的一条取消选中...
<el-table-column prop="name" label="名称"/> <el-table-column prop="createTime" label="创建时间" width="160px"/> </el-table> 1. 2. 3. 4. 5. 6. 7. 8. 多选变单选,关键是ref=“xx” handleSelectionChange (val) { if (val.length > 1) { ...
ElementUI中的el-table实现多选框不勾选的提示 场景 ElementUI中的el-table怎样实现多选与单选: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/107769640 在上面实现多选和单选的基础上,实现如果不勾选就点击某按钮时给予提示。 注: 博客:...