element-ui el-tree 获取当前选中数据(含半选中的父节点)

文章介绍了在Vue的ElementTree组件中,check-strictly属性对父子级节点关联选择的影响。默认为false时,节点可互相关联;设置为true时,父子级将不互相关联。展示了如何获取选中和半选中的数据。
摘要由CSDN通过智能技术生成

check-strictly

  1. check-strictly 为false为父子级互相关联
  2. check-strictly 为true为父子级不互相关联
    父子级互相关联
    此为互相关联
<el-tree
   :data="deptOptions"
   :check-strictly="false" // 默认为false 可以不写
   :props="defaultProps"
   show-checkbox
    :filter-node-method="filterNode"
   ref="tree"
   node-key="id"
   :default-checked-keys="checkedList"
   default-expand-all
   highlight-current
 >

获取所有选中的数据

// 获取所有选中的数据
const list = this.$refs.tree.getCheckedKeys(true);

父子级不互相关联
此为互相不关联

<el-tree
   :data="deptOptions"
   :check-strictly="true" // 默认为false 设置为不互相关系系改为true
   :props="defaultProps"
   show-checkbox
    :filter-node-method="filterNode"
   ref="tree"
   node-key="id"
   :default-checked-keys="checkedList"
   default-expand-all
   highlight-current
 >


获取所有选中的数据

// 获取所有选中的数据
  // 目前被选中的部门节点
     let checkedKeys = this.$refs.tree.getCheckedKeys();
      // 半选中的部门节点
     let halfCheckedKeys = this.$refs.tree.getHalfCheckedKeys();
    checkedKeys.unshift.apply(checkedKeys, halfCheckedKeys);```

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值