赞
踩
click.stop 阻止点击事件继续传播
在table中使用,点击当前行,当前行被勾选,但是点击当前行中按钮或点击事件时,使用此方法,则在触发当前点击事件后,阻止行的选中事件
html
<el-table ref="tableRef" :data="tableData" :row-key="row => { return row.id}" @selection-change="handleSelectionChange"> <el-table-column width="50" align="center" type="selection"> </el-table-column> <el-table-column label="操作"> <template slot-scope="scope"> <el-button v-hasFSS="'rkcjgl-table-caoZuoJiLu'" icon="el-icon-stopwatch" type="text" style="padding:0;" @click.stop="openCzjl(scope.row)" >操作记录</el-button> </template> </el-table-column> </el-table>页面效果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。