table设置了highlight-current-row,可以在选中某个数据行时,高亮该行。 table设置了@row-click="handleRowClick",绑定了行点击事件,用于获取被点击的行数据。 table设置了ref="table",用于script中获取table对象并对其进行操作,通过this.$refs.table即可拿到。 另外这里放了一个button,绑定了一个属性disabled,当有数...
网上查了一些发现很多都是只能点击当前radio选中当前行,配合element-ui的单选table时发现两个的选择状态是不一致的,所以调整了一下 效果 提供下思路: 1.保证不止是点击单选框,点击列表某行也能够选中,通过设置highlight-current-row和@current-change="handleCurrentChange"实现 2.radio为单选框的值,选中后为当前行...
<el-table-column prop="address" label="地址"> </el-table-column> </el-table> ``` 这是JS代码 注册这个方法tableRowClassName(),这里传的rowIndex就是需要高亮的数据在数组里面的下标,返回的class类名就是你自己定义的class类名。 ```javascript methods: { tableRowClassName({row, rowIndex}) { if...
this.$refs.multipleTable.toggleRowSelection(this.tableData3[2],true); } (二).点击tr选中 1.在table中设置 @row-click="handleCurrentChange" row-click 点击行事件 <template> <el-table :data="tableData3" ref="multipleTable" @row-click="handleCurrentChange"> </el-table> </template> <script...
element ui table里 自带Checkbox组件,所以结合组件自身实现单击每行,实现这行的选中效果。代码如下: <el-tableborder v-show="blurShow":row-class-name="tableRowClassName"@row-click="getAddLisy"@selection-change="handleSelectionChange"ref="multipleTable":data="searchData"><el-table-columntype="selecti...
简介:VUE系列——ElementUI使用table时,选中某行或者鼠标移入某行时添加背景色 前言 Element官网给了单选的例子,给我们省了不少时间, 但是有时候选择一行之后并没有达到我们想要的效果 下面是官网给的例子: 一、需求 点击或者鼠标移入某一行之后,想要出现自定义的颜色 ...
tableData(val) { //this.curRow之前选中的行 let curIndex = val.findIndex(item => item.id=== this.curRow.id) //如果之前选中的行被删除,默认选中第一行 if (curIndex === -1) { this.$nextTick(() => { this.$refs.multipleTable.setCurrentRow(val[0]) ...
简介:基于elementUI的el-table组件实现按住某一行数据上下滑动选中/选择或取消选中/选择鼠标经过的行 实现代码 <template><div :class="$options.name"><el-tablestyle="user-select: none"ref="table":data="tableData":row-class-name="row_class_name"@mousedown.native="mousedownTable"@row-click="row_cl...
功能描述:表格中的数据具有多选功能,数据初始化时多选框默认选中。 实现代码如下: // html 部分代码 <el-table :data="tableData" @selection-change="handleSelectionChange" ref="multipleTable"> <el-table-column type="selection" width="55"></el-table-column> ...
</el-table> 1. 2. 3. 4. 5. 6. 7. 8. //点击行触发,选中或不选中复选框 handleRowClick (row, column, event) { this.$refs.multipleTable.toggleRowSelection(row); }, 1. 2. 3. 4. 主要是 ref="multipleTable" 和 @row-click="handleRowClick" ...