例如,不要在@node-click事件后添加.stop或.prevent等修饰符,除非确实需要。 查看官方文档: 查看Element UI官方文档中关于el-tree组件的node-click事件的说明,确认用法是否正确。同时,检查你所使用的Element UI版本是否有相关的bug或更新说明,这些可能会影响node-click事件的行为。 搜索类似问题: 如果以上步骤都无法...
问题的原因可能是绑定的@node-click事件没有正确绑定到el-tree组件上,可以尝试在el-tree组件内部重新定义一个node-click方法,并在组件中绑定该方法,例如: <el-tree :data="data" :props="defaultProps" @node-click="handleNodeClick"></el-tree>,在methods中定义handleNodeClick方法,确保能够正确响应点击事件。
> <el-tree class="filter-tree" :data="datatree" :props="defaultProps" default-expand-all highlight-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.t...
<el-tree ref="tree" id="fixtree" :props="defaultProps" node-key="unifiedId" :check-on-click-node="true" :load="loadNode" :filter-node-method="filterNode" :check-strictly="true" :default-checked-keys="peoples" lazy @check-change="getChecked"> {{ data.name }} ...
el-tree组件节点默认展开,单击节点不会触发伸缩,双击节点获取当前节点的数据。 问题解决 el-tree 默认展开并设置阻止单击节点自动展开或收缩 <el-tree default-expand-all :expand-on-click-node="false" @node-click="handleNode"> 添加双击事件 constn = {count:0,prev:null,timer:null}// 双击constdbClicks...
},// 默认点击Tree第一个节点deptTreeData(val) {if(val) {this.$nextTick(() =>{document.querySelector('.el-tree-node__content').click() }) } } }, 通过watch观测对象值的变化,从而获取第一个节点的DOM元素,触发点击事件,相关issue
@node-click="handleNodeClick"@node-drop="handleDrop"draggable> 代码如下 watch:{// 根据名称筛选部门树deptName(val){this.$refs.tree.filter(val);},// 默认点击Tree第一个节点deptTree(val){if(val){this.$nextTick(()=>{//this.$refs.tree.setCurrentKey('723fcc371a1c54ad53d899cf2c0f8c125...
check-on-click-node 添加之后无法实现点击节点选中。 element-botadded theinvalidlabelJul 6, 2018 element-botclosed this ascompletedJul 6, 2018 Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
:expand-on-click-node="false" el-tree 点击树的文字不要收缩仅点击图标的时候收缩 :current-node-key="currentNodekey" //默认选中节点树 ---默认选中第一个节点 getLoginUserAvailableDepForTreeOptionApi({unitId:"all"}).then((res)=>{this.depTreeList=res;if(this.depTreeList.length>0){this.curr...