当前位置: 首页 > article >正文

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

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

  • 组件使用
  • 获取选中的id
  • 全选实现
  • 反选实现
  • 全部代码

组件使用

  1. 引入组件,可以参考官网组件引入
  2. 参考官网示例写好基础数据结构,不知道怎么转换树形机构的看文章:一维数组转树形
<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
<el-tree ref="treeRef" node-key="id" style="max-width: 600px" :props="props" :data="data" show-checkbox />
  1. 声明变量
const treeRef = ref(null)
  1. 操作组件方法
// 获取选中数据
const handleCheckChange = () => {
  // 方法一:获取key,此方法必须设置属性node-key!!!
  console.log(treeRef.value.getCheckedKeys(false))// 返回被选中的key,也就是id
  // 方法二:获取节点node
  console.log(treeRef.value.getCheckedNodes(false))// 返回被选中的对象
}

全选实现

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

// 用于判断是全选还是取消
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节点设置为取消
// 反选
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)
  })
}

全部代码

<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>

http://www.kler.cn/a/419263.html

相关文章:

  • Python数组拆分(array_split())
  • 数据结构 (16)特殊矩阵的压缩存储
  • 认识redis 及 Ubuntu安装redis
  • ESP8266 (ESP-01S)烧录固件 和 了解与单片机通信必需的AT指令
  • uniapp中父组件调用子组件方法
  • 架构师:Dubbo 服务请求失败处理的实践指南
  • 韩顺平 一周学会Linux | Linux 实操篇-组管理和权限管理
  • 根据后台数据结构,构建搜索目录树
  • openssl 基本命令使用方法
  • Oracle之提高PLSQL的执行性能
  • 三十二:网络爬虫的工作原理与应对方式
  • ASP网络安全讲述
  • 易速鲜花聊天客服机器人的开发(上)
  • 一体化数据安全平台uDSP 入选【年度创新安全产品 TOP10】榜单
  • Ubuntu 22.04 LTS vs Ubuntu 24.04 LTS:深度剖析,哪个版本更胜一筹?
  • ORB-SLAM2源码学习:LocalMapping.cc: LocalMapping::MapPointCulling剔除不合格的地图点
  • 使用 Docker 容器创建一个 Web 服务器:从入门到实践
  • 怎么选拔人才
  • MySQL--SQL优化
  • 私有库gitea安装
  • DRM(数字权限管理技术)防截屏录屏----ffmpeg安装
  • 图片预处理技术介绍4——降噪
  • VM+Ubuntu18.04+XSHELL+VSCode环境配置
  • 探索Scala:文本分析与文件操作的艺术
  • Ubuntu 22.04 离线安装软件包
  • PyTorch 模型转换为 ONNX 格式