<el-table> 添加@row-click点击行时,会跳转到一个详细信息页面, 但是同时这一行也有编辑和删除类似其他的点击按钮。
遇到问题: 在点击按钮时,@row-click事件也被触发了,而我并不想触发 row-click 事件
解决办法: 写按钮的 @click 事件时添加 .stop
<el-table :data="list.data" class="el-table-style elTable" @row-click="handleEdit"> <el-table-column align="center" label="No." width="60"> <template slot-scope="scope"> <div class="staffNo"> <div class="sId">{{ scope.row.id }}</div> <div class="sortStyle"> <span v-if="scope.$index !== 0" class="up" @click.stop="handleMoveUp"></span> <span v-if="scope.$index !== list.data.length-1" class="down" @click.stop="handleMoveDown"></span> </div> </div> </template> </el-table-column> </el-table>