树形结构层级复选框

<template>
  <div class="app-container">
    <div class="role-cont clearfix">
      <!-- 全选框 -->
      <el-checkbox class="check-page-all" v-model="checkPageAll" @change="checkPageAllEv($event)"></el-checkbox>
      <el-table
        :data="tableData"
        style="width: 100%;margin-bottom: 20px;"
        ref="multipleTable"
        row-key="id"
        border
        default-expand-all
        :tree-props="{children: 'children', hasChildren: 'hasChildren'}"
      >
        <!-- 每一行选择框 -->
        <el-table-column type="selection" width="55">
          <template slot-scope="scope">
            <el-checkbox v-model="scope.row.checked" @change="pageCheckEv(scope)"></el-checkbox>
          </template>
        </el-table-column>
 
        <el-table-column prop="date" label="日期" sortable width="180"></el-table-column>
        <el-table-column prop="name" label="姓名" sortable width="180"></el-table-column>
        <el-table-column prop="address" label="地址"></el-table-column>
      </el-table>
      <el-button v-if="buttonShow" type="primary" @click="Test">测试</el-button>
    </div>
  </div>
</template>
 
<script>
export default {
  data() {
    return {
      checkPageAll: false,
      tableData: [
        {
          id: 1,
          date: "2010-05-02",
          name: "王小虎1",
          checked: false,
          address: "上海市普陀区金沙江路 1518 弄"
        },
        {
          id: 2,
          date: "2011-05-04",
          name: "王小虎2",
          checked: false,
          address: "上海市普陀区金沙江路 1517 弄"
        },
        {
          id: 3,
          date: "2012-05-01",
          name: "王小虎3",
          checked: false,
          address: "上海市普陀区金沙江路 1519 弄",
          children: [
            {
              p_id: 3,
              id: 31,
              date: "2013-05-01",
              name: "王小虎4",
              checked: false,
              address: "上海市普陀区金沙江路 1519 弄"
            },
            {
              p_id: 3,
              id: 32,
              date: "2014-05-01",
              name: "王小虎5",
              checked: false,
              address: "上海市普陀区金沙江路 1519 弄"
            }
          ]
        },
        {
          id: 4,
          date: "2015-05-03",
          name: "王小虎6",
          checked: false,
          address: "上海市普陀区金沙江路 1516 弄"
        }
      ],
      multipleSelection: [],
    };
  },
  computed:{
    buttonShow(){
      let num=0
      for(let i=0;i<this.tableData.length;i++){
        if(this.tableData[i].checked){
          num++
        }
        if(this.tableData[i].children!=undefined){
          let tableCatch=this.tableData[i].children
          for(let j=0;j<tableCatch.length;j++){
            if(tableCatch[j].checked){
              num++
            }
          }
        }
      }
      return num
    }
  },
  created() {},
  mounted() {},
  methods: {
    Test(){
      let saveList=[]
      for(let i=0;i<this.tableData.length;i++){
        let keyButton=0
        if(this.tableData[i].children!=undefined){
          let catchTable=this.tableData[i].children
          for(let j=0;j<catchTable.length;j++){
            if(catchTable[j].checked){
              saveList.push(catchTable[j])
              keyButton=1
            }
          }
        }
        //父级
        if(this.tableData[i].checked || keyButton==1){
          let parentData={id:this.tableData[i].id,data:this.tableData[i].date,
            name:this.tableData[i].name,checked:this.tableData[i].checked,
            address:this.tableData[i].address
          }
          saveList.push(parentData)
        }
      }
      console.log("保存")
      console.log(saveList)
    },
    // 全选事件
    checkPageAllEv(item) {
      // console.log(this.multipleSelection)
      let checkAll = (data, checked) => {
        for (let x of data) {
          x.checked = checked;
          if (x.children) {
            checkAll(x.children, checked);
          }
        }
      };
      if (item === true) {
        checkAll(this.tableData, true);
      } else {
        checkAll(this.tableData, false);
      }
    },
    // 遍历json数据
    isCheckAllEv(data) {
      let isCheckAll = true;
      let fn = data => {
        for (let x of data) {
          if (x.checked === false) {
            isCheckAll = false;
            return isCheckAll;
          }
          if (x.children) {
            fn(x.children);
          }
        }
      };
      fn(data);
      console.log(isCheckAll);
      return isCheckAll;
    },
    // 查找父级函数
    getParent(data2, nodeId2) {
      var arrRes = [];
      if (data2.length === 0) {
        if (nodeId2) {
          arrRes.push(data2);
        }
        return arrRes;
      }
      let rev = (data, nodeId) => {
        for (var i = 0, length = data.length; i < length; i++) {
          let node = data[i];
          if (nodeId === data[i].id) {
            arrRes.push(node);
            rev(data2, node.p_id);
            break;
          } else {
            if (node.children) {
              rev(node.children, nodeId);
            }
          }
        }
        return arrRes;
      };
      arrRes = rev(data2, nodeId2);
      return arrRes;
    },
    // 子选框事件
    pageCheckEv(scope) {
      console.log("复选框")
      console.log(scope.row);
      // 如果有子项,则子项的选框选择跟当前一致
      if (scope.row.children) {
        this.handleCheckAll(scope.row, scope.row.checked);
      }
      // 查找父级选框
      this.getParent(this.tableData, scope.row.id).forEach((item, i) => {
        // 判断父级是否有子元素
        console.log("父级")
        console.log(item)
        if (!item.children) {
          item.checked = scope.row.checked;
        } else {
          var num = 0;
          item.children.forEach((item, i) => {
            // 判断子元素的checked是否为true, 并记录选中的数量
            if (item.checked === true) {
              num += 1;
            }
          });
          // 判断子元素的checked 是否全部 为true(true是选中) 如果是全部选中,那么将父元素的checked状态改成true,否则为false
          if (num === item.children.length) {
            item.checked = true;
          } else {
            item.checked = false;
          }
        }
      });
 
      // 是否所有子项都已经勾选
      if (this.isCheckAllEv(this.tableData) === true) {
        this.checkPageAll = true;
      } else {
        this.checkPageAll = false;
      }
    },
    // 将子元素的状态 改成和父元素的状态一样
    handleCheckAll(row, checked) {
      row.checked = checked;
      if (row.children) {
        let that = this;
        row.children.forEach((element, i) => {
          that.handleCheckAll(row.children[i], checked);
        });
      }
    }
  }
};
</script>
 
<style scoped lang="scss">
.role-cont {
  position: relative;
  font-size: 16px;
  color: #333333;
  line-height: 40px;
}
.check-page-all {
  position: absolute;
  top: 10px;
  left: 11px;
  z-index: 99;
}
</style>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

程序员阿明

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值