基于elementUI的下拉框显示树的组件集成

最近刚学习了vue组件的知识,刚好项目中需要用到下拉框树的使用,找了elementUI里面的各方法和需要的传值,做出了一个下拉框,如下图
在这里插入图片描述
并将他们集成成为了一个组件
下面是组件的代码:

<template>
  <div>
    <el-select v-model="form" placeholder="请选择" multiple collapse-tags clearable @change="translate">
      <el-option
        :value="value"
        style="background:white;overflow:scroll;height:150px;overflow-x:hidden;"
      >
        <div>
          <el-tree
            :data="childData"
            show-checkbox
            :props="defaultProps"
            ref="child"
            :node-key="code"
            :default-expand-all="true"
          ></el-tree>
        </div>
      </el-option>
      <div style="display:flex;justify-content:center;align-items:center;margin-top:5%;">
        <el-button @click="sure">确定</el-button>
        <el-button @click="all">全选</el-button>
        <el-button @click="clear">清空</el-button>
      </div>
    </el-select>
  </div>
</template>
<script>
//childData为传入的数组
//name为下拉框上面多选的栏目的名字
//code为栏目名字中的编码
//chidldName为传入的子节点的名称
export default {
  props:{
        childData:Array,
        name:String,
        code:String,
        childrenName:String
    },
  data() {
    return {
      value: "",
      defaultProps: {
        children: this.childrenName,
        label: this.name
      },
      form: [],
      codeForm:[],
      isAll:false,
      x:true,
      list:[]
    };
  },
  methods: {
    //确定,并返回一个数组,里面是前面传入的遍历的code
    sure() {
      let list = this.$refs.child.getCheckedNodes();
      this.form = [];
      this.codeForm = [];
      for (let a in list) {
        this.form.push(eval("list[a]"+'.'+this.name));
        this.codeForm.push(eval("list[a]"+'.'+this.code));
      }
      this.$emit('data',this.codeForm)
      this.x=true
    },
    //清空
    clear() {
      this.form = [];
      this.$refs.child.setCheckedKeys([]);
    },  
    //全选
    all(){
      if(this.isAll==false){
        this.$refs.child.setCheckedNodes(this.childData);
        this.isAll=true
      }else{
        this.$refs.child.setCheckedKeys([]);
        this.isAll=false
      }
    },
    //下拉框选择到的数据进行删除后,树前面的勾选取消操作
    translate(){
      let list2=[];
      if(this.x==true){
        this.list=this.$refs.child.getCheckedNodes();
        for(let i=1;i<this.list.length;i++){
          list2.push(this.list[i])
        }
        this.list=list2
        this.x=false;
      }else{
        for(let i=1;i<this.list.length;i++){
          list2.push(this.list[i])
        }
        this.list=list2
        
      }
      this.$refs.child.setCheckedNodes(list2);
      this.codeForm=[]
      for(let a in list2){
        this.codeForm.push(eval("list2[a]"+'.'+this.code));
      }
      this.$emit('data',this.codeForm)
    }
  }
};
</script>

下面是调用该组件的方式

<template>
  <div>
    <selectTree :childData="father" :name="name" :code="code" :childrenName="childrenName" @data="getData" >
    </selectTree>
  </div>
</template>
<script>
import selectTree from "./test.vue";
export default {
  components: {
    selectTree
  },
  data() {
    return {
      father: [], //传入数据
      name:'deptName',
      form:[],
      code:'deptCode',
      childrenName:"children"
    };
  },
  created() {
    that = this;
  },
  mounted() {},
  methods: {
    getData(val){
      that.form=val //获取到的前面传入的对象名为code的数据列表
    }
  }
};
var that;
</script>
<style>
</style>

下面是github地址

https://github.com/qiuqiuandqiuqiu/selectTree

这是我第一次做组件,有什么需要改进的地方请告诉我,谢谢大佬们!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值