心想,加就加呗,直接一个梭哈,在el-table表格里加上 @row-click="handleRowClick", 然后就提交了 功能倒是能用,就是点击按钮的时候也触发了,果不其然被测试打回重写(狗头) 二、事情的经过 一开始,我想着通过row-click的参数来做区分,因为row-click的默认参数有row, column, event这三个,其中column就可以拿...
1.按钮是el-button标签,为点击事件加.native.stop ,即@click.native.stop=“handleClick(scope.row)” 2.按钮通过render函数渲染实现,render函数中自带event事件,不用传参,不用写e,直接e.stopPropagation()就可以,当然,加上e也没毛病。 on:{ click:e=>{ e.stopPropagation(); ... }...
👀 1 wzXJF changed the title When using CDN, the row click event does not work when using El table 使用cdn 的方式引用,然后在使用 el-table 时候,row-click 事件不起作用,但是我换成npm引入的方式时候,是没有任何问题的,不知道到具体是怎么回事 May 14, 2021 jw-foss added the Issue::Invali...
1,el-table的行点击row-click事件获取行索引 <el-table:row-class-name="tableRowClassName"@row-click="rowClick"></el-table> 2,给每一行row的数据对象里添加index属性 tableRowClassName({ row, rowIndex }) { row.index = rowIndex; } 3,监听行的点击事件 rowClick(row){console.log(row);// 当前...
@row-click="rowClick" 1. 2. private tableRowClassName({row, rowIndex}: any) { // 把每一行的索引放进row row.index = rowIndex; } 1. 2. 3. 4. private rowClick(row: any) { const index = row.index; this.tableData.forEach((item: any) => { ...
el-table点击行不能获取行索引值。 网上的临时解决方案:https://www.cnblogs.com/yangyi9343/p/9295293.html Translation of this issue: Existing Component Yes Component Name El-table Description El-table clicking on a row cannot get the row index value. ...
el-table报错nested data item, row-key is required. 这个主要是el-table树形结构设置错误。检查row-key tree-props 和hasChildren赋值没有。一般hasChildren未赋值报错。
这个时候会出现各种意外情况,入页面卡死,页面空白,下拉列表点不动等等错误。 特别的el-table有写特殊功能需要我们把row-key赋值,如果key重复,渲染就会失败。 为了防止key重复,我们会想当然的认为返回一个随机数字就可以了,所以会这样返回一个随机字符串 Math.random()+''; ...
1、highlight-current-row tr.current-row > td, .el-table__body tr:hover > td { background: #f5f5f5; } 1. 2. 3. 4. 2、:row-class-name=“tableRowClassName”,需要借助@row-click="handleRowClick"获取当前点击行的下标 data() { ...