需要设置node-key,ref,current-node-key 且写在nextTick里(必须等待dom渲染完毕后再执行) 重点设置setCurrentKey,否则样式不会高亮 传的值就是current-node-key绑定的值 image.png <el-treeref="treeRef":highlight-current="true":expand-on-click-node="false":data="departmentList":props="defaultProps"node...
1,有时候高亮当前选中的节点的不起作用 current-node-key属性既支持数字,也支持字符串,这个数据类型要和数据里面的id的数据类型对应起来,也就是说如果数据里面的id的数据类型是数字,那current-node-key属性就要设置成数字类型,反之一样 另外也要设置highlight-current属性,高亮当前选中的节点 2,获取不到当前选中的...
因为使用jsx的写法 <el-treeref="myTree"data={this.tagtree}props={this.defaultProps}on-node-click={this.handleNodeClick}current-node-key={this.currentNodeKey}highlight-current={true}node-key="id"></el-tree> 在js中使用 this.$nextTick(() => {}) 配合写 this.$nextTick(() =>{this.$re...
deleteItem (data) {consttreeNode =this.$refs.tree.getNode(data) treeNode.parent.loaded =falsetreeNode.parent.loadData()// 刷新父节点数据} 问题四:选中节点设置: setCurrentKey不起作用的问题处理 在新增、删除操作成功之后,我们常常需要重新设置当前选中的节点,el官方给我们提供了方法setCurrentKey,但初次...
current :filter-node-method="filterNode" @node-click="handleXmxz" ref="tree3"> </el-tree> </el-popover> handleXmxz:function(obj, node, data){ if(node.data.type!=0&&node.data.type!=1)return; $(".xmxz-container").parent("div").hide() showRight(node.data.type)//新项目 ...
el-tree-v2 Reproduction Link Element Plus Playground Steps to reproduce set default-expanded-keys/current-node-key find the key i set, not in the visible area What is Expected? tree will scroll to the current-node-key, make it visible ...
V1.0.8中tree组件 current-change与node-click同时触发了, current-change应该是选择框更改了再触发不应该是点击就触发。
<el-tree :data="treeData" :node-key="'id_' + node.id + '_name_' + node.name"></el-tree> ``` 这样,在el-tree中的每个节点都会使用id和name的组合值作为其唯一的node-key。 2.函数组合方式: 可以使用一个函数来定义node-key的值,函数接收节点作为参数,然后返回一个唯一的标识值。例如,使用...
二、el-select 中 multiple多选,回显数据后编辑不起作用 三、el-dialog 样式修改 四、el-select + el-tree 五、el-tree 数据过滤 六、el-cascader 实现省市区动态联动 七、element 解决 el-table 表格错位问题 八、element 源码更改 九、补充 一、el-date-picker 限制过去日期无法选择 ...