登录
首页 >  文章 >  前端

ElementUI 树节点点击后,子节点选中但复选框未打勾如何解决?

时间:2024-11-15 13:48:52 368浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《ElementUI 树节点点击后,子节点选中但复选框未打勾如何解决?》,聊聊,我们一起来看看吧!

ElementUI 树节点点击后,子节点选中但复选框未打勾如何解决?

elementui 树节点点击后,el-table子节点选中没有打勾

这个问题是在使用 elementui 树状表格组件时遇到的。当点击树的父节点时,相应的子节点可以正常选中,但子节点的复选框中没有打勾。

解决方案

主要解决方式是:

  1. 升级到 elementui 最新版本。
  2. 添加一个setselectitem方法来设置选中的数据。

代码示例

<template>
  <el-table
    v-loading="loading"
    :data="customList"
    @selection-change="handleSelectionChange"
    :row-key='rowKeyFunc'
    :tree-props="{children: 'children'}"
    :row-class-name="rowClassNameFun"
    ref="table"
    @select-all="selectAllFun"
    @select="selectFun"
  >
    <el-table-column type="selection" width="55" align="center"/>
    <el-table-column label="买家名称" align="center" prop="customName" width="120px"/>
    <el-table-column
      label="联系人"
      align="center"
      prop="linkman"
      width="180"
    >
    </el-table-column>
    <el-table-column
      label="联系电话"
      align="center"
      width="200"
      prop="phone"
    />
    <el-table-column
      label="地址"
      align="center"
      width="200"
      prop="address"
    />
  </el-table>
</template>

<script>
import { getCustomList } from '@/api/iam'

export default {
  data() {
    return {
      // ...
      selectItem: [], // 选中的数据
    }
  },
  methods: {
    // ...
    // 全选或全不选
    selectAllFun(selection) {
      let isAllSelect = this.checkIsAllSelect()
      if (isAllSelect) {
        this.selectItem = []
      } else {
        this.customList.forEach((item) =&gt; {
          this.selectItem.push(item)
          if (item.children?.length &gt; 0) {
            item.children.forEach(obj =&gt; {
              this.selectItem.push(obj)
            })
          }
        })
      }

      this.customList.forEach((item) =&gt; {
        item.isSelect = isAllSelect
        this.$refs.table.toggleRowSelection(item, !isAllSelect)
        this.selectFun(selection, item, true)
      })
    },
    // 选中一行
    selectFun(selection, row, state) {
      this.setRowIsSelect(row, state)
      this.setSelectItem(row)
    },
    // 设置选中状态
    setRowIsSelect(row, state) {
      // ...

      if (!state) this.setSelectItem(row)
    },
    // 设置选中集合
    setSelectItem(row) {
      let index = this.selectItem.indexOf(row)
      if (row.isSelect) {
        // ...
      } else {
        // ...
      }
    },
    // ...
  },
}
</script>

เพิ่มเติม

解决此问题时,还需要注意以下事项:

  • 将 indeterminate 类添加到未完全选中的行的 el-table-column--selection 元素中,以显示复选框中有一个半勾选标记。
  • 重写 ::v-deep .indeterminate 样式,以自定义半勾选状态的复选框外观。

好了,本文到此结束,带大家了解了《ElementUI 树节点点击后,子节点选中但复选框未打勾如何解决?》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多文章知识!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>