当前位置: 首页> 娱乐> 明星 > logo制作软件手机免费版_东莞常平社保局电话_太原全网推广_重庆seo优

logo制作软件手机免费版_东莞常平社保局电话_太原全网推广_重庆seo优

时间:2025/7/13 2:06:21来源:https://blog.csdn.net/weixin_45618937/article/details/142844243 浏览次数:1次
logo制作软件手机免费版_东莞常平社保局电话_太原全网推广_重庆seo优

问题:

el-table中实现单选,选中一个其他的取消选中

代码:

<template><div><el-table:data="tableData"@selection-change="handleSelectionChange"ref="singleTable"highlight-current-row><el-table-columntype="selection"width="55"></el-table-column><el-table-columnprop="name"label="姓名"></el-table-column><el-table-columnprop="address"label="地址"></el-table-column></el-table></div>
</template><script>
export default {data() {return {tableData: [{name: '王小虎',address: '上海市普陀区金沙江路 1518 弄'}, {name: '张三',address: '上海市普陀区金沙江路 1517 弄'}],selectedRow: null // 用于存储当前选中的行};},methods: {handleSelectionChange(selection) {if (Array.isArray(selection) && selection.length > 1) {//点击勾选框this.$refs.singleTable.toggleRowSelection(selection[0],false);this.$refs.singleTable.toggleRowSelection(selection[1],true);this.selectedRow = selection[1];}else if (Array.isArray(selection) && selection.length === 1){this.selectedRow = selection[0];}else {this.selectedRow = null;}},}
};
</script>```
关键字:logo制作软件手机免费版_东莞常平社保局电话_太原全网推广_重庆seo优

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: