vue项目开发中,如何实现el-table
表格全选、指定选中、取消选中等功能,下面web建站小编给大家详细介绍一下具体实现代码!
template代码
<template> <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" @selection-change="handleSelectionChange"> <el-table-column type="selection" width="55"> </el-table-column> <el-table-column prop="name" label="姓名" width="120"> </el-table-column> <el-table-column prop="age" label="年龄" show-overflow-tooltip> </el-table-column> </el-table> <div style="margin-top: 20px"> <el-button @click="toggleSelection([tableData[3]])">切换第四行的选中状态</el-button> <el-button @click="toggleSelection()">取消选择</el-button> </div> </template>
script代码
<script> export default { data() { return { tableData: [], multipleSelection: [] } }, methods: { //如果定义了指定选中项,点击选中指定项,否则取消选中 toggleSelection(rows) { if (rows) { rows.forEach(row => { this.$refs.multipleTable.toggleRowSelection(row); }); } else { this.$refs.multipleTable.clearSelection(); } }, handleSelectionChange(val) { this.multipleSelection = val; } } } </script>
el-table利用:row-style="rowClass"设置指定行变色
el-table表格显示selection多选时对某些复选框设置禁止选中
el-dialog中获取el-table组件的ref值报undefined错误!
标签: el-table, el-table多选, selection
上面是“el-table表格实现多选功能(全选/指定选中/取消选中)”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4082.html
workflows工作流
- 一群邪恶的小黄人ComfyUI工作流
- 树枝上一只色彩斑斓的小鸟
- 一对葫芦ComfyUI工作流
- 一幅以霓虹灯照亮的城市天际线和未来主义画
- 一只穿着黑色蝴蝶结西装可爱橙色小猫
- 荷塘月色ComfyUI工作流
- 《翅膀之王:鸡的团契》海报ComfyUI工作流
- 彩色雄鹰玉雕ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!