el-tree的使用及控制全选、反选、获取选中

el-tree的使用及控制全选、反选、获取选中

组件使用

  1. 引入组件,可以参考官网组件引入
  2. 参考官网示例写好基础数据结构,不知道怎么转换树形机构的看文章:一维数组转树形
html 复制代码
<template>
  <el-tree
    style="max-width: 600px"
    :data="data"
    :props="props"
    show-checkbox
  />
</template>

<script setup>
const handleNodeClick = (data) => {
  console.log(data)
}

const data = [
  {
    label: 'Level one 1',
    children: [
      {
        label: 'Level two 1-1',
        children: [
          {
            label: 'Level three 1-1-1',
          },
        ],
      },
    ],
  },
  {
    label: 'Level one 2',
    children: [
      {
        label: 'Level two 2-1',
        children: [
          {
            label: 'Level three 2-1-1',
          },
        ],
      },
      {
        label: 'Level two 2-2',
        children: [
          {
            label: 'Level three 2-2-1',
          },
        ],
      },
    ],
  },
  {
    label: 'Level one 3',
    children: [
      {
        label: 'Level two 3-1',
        children: [
          {
            label: 'Level three 3-1-1',
          },
        ],
      },
      {
        label: 'Level two 3-2',
        children: [
          {
            label: 'Level three 3-2-1',
          },
        ],
      },
    ],
  },
]

const props= {
  children: 'children',
  label: 'label',
}
</script>

获取选中的id

通过获取tree组件,操作方法进行获取

  1. 给组件绑定一个ref
html 复制代码
<el-tree ref="treeRef" node-key="id" style="max-width: 600px" :props="props" :data="data" show-checkbox />
  1. 声明变量
js 复制代码
const treeRef = ref(null)
  1. 操作组件方法
js 复制代码
// 获取选中数据
const handleCheckChange = () => {
  // 方法一:获取key,此方法必须设置属性node-key!!!
  console.log(treeRef.value.getCheckedKeys(false))// 返回被选中的key,也就是id
  // 方法二:获取节点node
  console.log(treeRef.value.getCheckedNodes(false))// 返回被选中的对象
}

全选实现

思路:获取全部的key,也就是id,然后通过赋值的操作来实现效果

js 复制代码
// 用于判断是全选还是取消
let isAll = false;
// 全选
const all = () => {
  if (isAll) {
    treeRef.value.setCheckedKeys([], false)
    isAll = false
  } else {
    // 获取所以的id,如果有一维数组,则直接循环获取即可
    const nodeKeys = [];
    function getAllKeys(data) {
      data.forEach(node => {
        nodeKeys.push(node.id);
        if (node.children) {
          getAllKeys(node.children);
        }
      });
    }
    getAllKeys(treeData.value);
    treeRef.value.setCheckedKeys(nodeKeys, false)
    isAll = true
  }
}

反选实现

思路:

  1. 获取当前选中的key
  2. 全部选中
  3. 将第一步获取的key节点设置为取消
js 复制代码
// 反选
const reverse = () => {
  // 1. 获取当前选中的key
  let checked = treeRef.value.getCheckedKeys(false);
  // 2. 全部选中
  const nodeKeys = [];
  function getAllKeys(data) {
    data.forEach(node => {
      nodeKeys.push(node.id);
      if (node.children) {
        getAllKeys(node.children);
      }
    });
  }
  getAllKeys(treeData.value);
  treeRef.value.setCheckedKeys(nodeKeys, false)
  // 3. 将第一步获取的key节点设置为取消
  checked.forEach(val => {
    treeRef.value.setChecked(val, false)
  })
}

全部代码

html 复制代码
<template>
  <el-tree
    style="max-width: 600px"
    :data="data"
    :props="props"
    show-checkbox
    ref="treeRef"
  />
  <el-button type="primary" @click="handleCheckChange">获取选中数据</el-button>
  <el-button type="primary" @click="all">全选</el-button>
  <el-button type="primary" @click="reverse">反选</el-button>
</template>

<script setup>
import { ref } from 'vue';
const treeRef = ref(null)
const handleNodeClick = (data) => {
  console.log(data)
}

const data = [
  {
    label: 'Level one 1',
    children: [
      {
        label: 'Level two 1-1',
        children: [
          {
            label: 'Level three 1-1-1',
          },
        ],
      },
    ],
  },
  {
    label: 'Level one 2',
    children: [
      {
        label: 'Level two 2-1',
        children: [
          {
            label: 'Level three 2-1-1',
          },
        ],
      },
      {
        label: 'Level two 2-2',
        children: [
          {
            label: 'Level three 2-2-1',
          },
        ],
      },
    ],
  },
  {
    label: 'Level one 3',
    children: [
      {
        label: 'Level two 3-1',
        children: [
          {
            label: 'Level three 3-1-1',
          },
        ],
      },
      {
        label: 'Level two 3-2',
        children: [
          {
            label: 'Level three 3-2-1',
          },
        ],
      },
    ],
  },
]

const props= {
  children: 'children',
  label: 'label',
}
// 获取选中数据
const handleCheckChange = () => {
  // 方法一:获取key,此方法必须设置属性node-key!!!
  console.log(treeRef.value.getCheckedKeys(false))// 返回被选中的key,也就是id
  // 方法二:获取节点node
  console.log(treeRef.value.getCheckedNodes(false))// 返回被选中的对象
}

// 用于判断是全选还是取消
let isAll = false;
// 全选
const all = () => {
  if (isAll) {
    treeRef.value.setCheckedKeys([], false)
    isAll = false
  } else {
    // 获取所以的id,如果有一维数组,则直接循环获取即可
    const nodeKeys = [];
    function getAllKeys(data) {
      data.forEach(node => {
        nodeKeys.push(node.id);
        if (node.children) {
          getAllKeys(node.children);
        }
      });
    }
    getAllKeys(treeData.value);
    treeRef.value.setCheckedKeys(nodeKeys, false)
    isAll = true
  }
}

// 反选
const reverse = () => {
  // 1. 获取当前选中的key
  let checked = treeRef.value.getCheckedKeys(false);
  // 2. 全部选中
  const nodeKeys = [];
  function getAllKeys(data) {
    data.forEach(node => {
      nodeKeys.push(node.id);
      if (node.children) {
        getAllKeys(node.children);
      }
    });
  }
  getAllKeys(treeData.value);
  treeRef.value.setCheckedKeys(nodeKeys, false)
  // 3. 将第一步获取的key节点设置为取消
  checked.forEach(val => {
    treeRef.value.setChecked(val, false)
  })
}
</script>
相关推荐
疯狂的沙粒5 分钟前
前端开发 vue 中如何实现 u-form 多个form表单同时校验
javascript·vue.js·ecmascript
IT 前端 张7 分钟前
2025 最新前端高频率面试题--Vue篇
前端·javascript·vue.js
喵喵酱仔__8 分钟前
vue3探索——使用ref与$parent实现父子组件间通信
前端·javascript·vue.js
_NIXIAKF9 分钟前
vue中 输入框输入回车后触发搜索(搜索按钮触发页面刷新问题)
前端·javascript·vue.js
InnovatorX10 分钟前
Vue 3 详解
前端·javascript·vue.js
种麦南山下12 分钟前
vue el table 不出滚动条样式显示 is_scrolling-none,如何修改?
前端·javascript·vue.js
天弈初心13 分钟前
Vue 组件开发:构建高效可复用的 UI 构建块
javascript·vue.js
杨荧1 小时前
【开源免费】基于Vue和SpringBoot的贸易行业crm系统(附论文)
前端·javascript·jvm·vue.js·spring boot·spring cloud·开源
缘月叙文3 小时前
【vue3封装element-plus的反馈组件el-drawer、el-dialog】
javascript·vue.js·elementui
萌萌哒草头将军3 小时前
🚀🚀🚀快来靓仔,给你看个大宝贝,我不允许你还不知道这个提效工具
前端·vue.js·react.js