Vue|Vue el-table 默认展开某一行的实例
目录
- Vue el-table 默认展开某一行
- el-table 高亮某一行
- 使用 highlight-current-row 属性
- 使用 row-class-name
Vue el-table 默认展开某一行 需求是在另外一个页面选择IP地址直接到这个页面,并需要默认展开选择的那一行
代码如下:
{{ props.row.ip }} {{ props.row.country }} {{ props.row.purchaseDate }} {{ props.row.expiryDate }}
在获取列表时,调用展开详情,这只适用于一个表格
/** 查询列表 */getList() {this.nodeList = []; // 从URL中获取的对应的主键IDconst rowId = this.$route.query && this.$route.query.rowId; listNode(this.queryParams).then(response => {this.nodeList = response.rows; this.total = response.total; // 查找rowId对应的列表的下标值let index = this.nodeList.findIndex(item => item.id === this.rowId); if (index >= 0) {this.openDetail(this.nodeList[index]); }}); },/** 展开详情 */openDetail(row) {this.$nextTick(() => {this.$refs.expandTable.toggleRowExpansion(row, true); }); },
但是如果表格在for循环下,或者在多个tab下的话,那么this.$refs.expandTable就是一个数组,就需要使用下列方式:
openDetail(row) {this.$nextTick(() => {for (let i = 0; i < this.$refs.expandTable.length; i++) {this.$refs.expandTable[i].toggleRowExpansion(row, true); }}); },
el-table 高亮某一行
使用 highlight-current-row 属性
el-table 加上 highlight-current-row 属性。
调用 setCurrentRow(row, true) 设置当前行高亮,row为dataList里面的数据。
selectRow(row) {if (row) {this.$refs.tTable.setCurrentRow(row, true); } else {this.$refs.tTable.setCurrentRow(); // 取消高亮}}
如果要改变默认的高亮的颜色。这样就把项目中所有el-table的高亮颜色都改了。
.el-table__body tr.current-row>td {background: #453878 !important; }
使用 row-class-name
transcriptTableRowClassName({row, rowIndex}) {if (rowIndex === this.curSentenceRowIndex) {return 'speak-row'; }return ''; },
如果是当前行时,返回不同的样式。
.el-table .speak-row {color: darkorange; font-size: 15px; font-weight: 500; background: #f0f9eb; }
【Vue|Vue el-table 默认展开某一行的实例】以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- vue|vue 如何删除数组中的某一条数据
- Vue中tab栏切换的简单实现
- 编写Vue项目|编写Vue项目,如何给数组的第一位添加对象数据
- Vue项目中props传值时子组件检测不到的问题及解决
- Vue.extend实现组件库message组件示例详解
- Vue项目如何实现rsa加密
- vue后台返回格式为二进制流进行文件的下载方式
- VUE 自定义指令实现点击后禁用elementUI按钮
- vue中的循环遍历对象、数组和字符串
- vue|vue vue-esign签字板的demo