【elementui】记录解决el-tree开启show-checkbox后,勾选一个叶结点后会自动折叠的现象

第一种解决方案:设置default-expand-keys的值为当前选中的key值即可

javascript 复制代码
<el-tree
  ref="tree"
  class="checkboxSelect-wrap"
  :data="treeData"
  show-checkbox
  node-key="id"
  :expand-on-click-node="true"
  :props="defaultProps"
  :accordion="false"
  :default-checked-keys="defaultCheckedKeys"
  :default-expand-keys="defaultExpandKeys"
  :default-expand-all="false"
  @node-click="handleNodeClick"
  @check="handleCheckChange"
>
</el-tree>

data() {
  return {
	defaultExpandKeys: [],
  }
},
computed: {
  // 当前选中的所有key值
  checkedKeys() {
    return this.$refs.tree.getCheckedKeys()
  },
},
methods() {
  handleCheckChange() {
  	// 每次勾选后都把当前选中的所有key值给defaultExpandKeys 
	this.defaultExpandKeys = this.checkedKeys
  }
}

第二种解决方法:使用getNode()找到当前点击的节点的expanded值,改变他,不让它为false折叠

之所以有第二种方法不用default-expand-keys的原因是:

在使用default-expand-keys之后,会出现一个现象:由于我的页面还有其他el-checkbox,这就造成了明明与el-tree无关,且el-tree的叶子节点是折叠的,但只要el-tree里面的某个节点是全选状态,勾选el-checkbox的时候,就会触发el-tree的叶结点自动展开的现象。

发生该现象的原因:
由于我的el-tree不确定接口数据有多少个,所以是循环出来的,会有两个以上的el-tree组件在同一个div里面,这就造成了使用default-expand-keys虽然可以解决勾选一个叶结点后会自动折叠的现象,但是当前default-expand-key我给的值是所有el-tree的getCheckedKeys()拿到的key值list。但我尝试了即使只给default-expand-keys赋值每个el-tree的getCheckedKeys(),还是会出现该现象。

如图所示:点击不限的瞬间,成长、平衡、价值的所有子结点突然全部展开了

此处我将expand-on-click-node设置了为false,不再使用该属性使得点击节点展开子结点

javascript 复制代码
<el-tree
  ref="tree"
  class="checkboxSelect-wrap"
  :data="treeData"
  show-checkbox
  node-key="id"
  :expand-on-click-node="false"
  :props="defaultProps"
  :accordion="false"
  :default-checked-keys="defaultCheckedKeys"
  :default-expand-all="defaultExpand"
  @node-click="handleNodeClick"
  @check="handleCheckChange"
>
</el-tree>

在node-click事件中调用expand()展开节点:必须写nextTick,不然不生效;注释掉的那段可以用于点击节点、展开该节点下的子节点,就是和:expand-on-click-node="true"属性一个意思;但是不能保证点击叶结点时,该叶结点的上层节点保持展开的状态,没注释的那段,就可以达到该效果。

javascript 复制代码
handleNodeClick(data, node, self) {
  this.$nextTick(() => {
    let currentNode = this.$refs.tree.getNode(data.id)
	
    if(!currentNode.parent.expanded) {
      currentNode.parent.expand(function(){
        for(let i=0; i< currentNode.parent.childNodes.length; i++){
          currentNode.parent.childNodes[i].expand()
        }
      })
    }
  
    // if(!currentNode.expanded){
    //   currentNode.expand(function(){
    //     for(let i=0; i< currentNode.childNodes.length; i++){
    //       currentNode.childNodes[i].expand()
    //     }
    //   })
    // }else {
    //   currentNode.expanded = false  
    // }
  })
},
相关推荐
码蜂窝编程官方25 分钟前
【含开题报告+文档+PPT+源码】基于SpringBoot+Vue的虎鲸旅游攻略网的设计与实现
java·vue.js·spring boot·后端·spring·旅游
gqkmiss25 分钟前
Chrome 浏览器 131 版本开发者工具(DevTools)更新内容
前端·chrome·浏览器·chrome devtools
Summer不秃31 分钟前
Flutter之使用mqtt进行连接和信息传输的使用案例
前端·flutter
旭日猎鹰35 分钟前
Flutter踩坑记录(二)-- GestureDetector+Expanded点击无效果
前端·javascript·flutter
Viktor_Ye41 分钟前
高效集成易快报与金蝶应付单的方案
java·前端·数据库
hummhumm43 分钟前
第 25 章 - Golang 项目结构
java·开发语言·前端·后端·python·elasticsearch·golang
乐闻x1 小时前
Vue.js 性能优化指南:掌握 keep-alive 的使用技巧
前端·vue.js·性能优化
一条晒干的咸魚1 小时前
【Web前端】创建我的第一个 Web 表单
服务器·前端·javascript·json·对象·表单
Amd7941 小时前
Nuxt.js 应用中的 webpack:compiled 事件钩子
前端·webpack·开发·编译·nuxt.js·事件·钩子
生椰拿铁You2 小时前
09 —— Webpack搭建开发环境
前端·webpack·node.js