表格树形结构vue

在表格添加tree-props属性

:tree-props="{children: 'children', hasChildren: 'haschildren'}"

树形结构数据封装(建新js用来封装数据)

/**
 * 构造树型结构数据
 * @param {*} data 数据源
 * @param {*} id id字段 默认 'id'
 * @param {*} parentId 父节点字段 默认 'parentId'
 * @param {*} children 孩子节点字段 默认 'children'
 * @param {*} rootId 根Id 默认 0
 */
export function handleTree(data, id, parentId, children, rootId) {
	id = id || 'id'
	parentId = parentId || 'parentId'
	children = children || 'children'
	rootId = rootId || Math.min.apply(Math, data.map(item => { return item[parentId] })) || 0
	//对源数据深度克隆
	const cloneData = JSON.parse(JSON.stringify(data))
	//循环所有项
	const treeData = cloneData.filter(father => {
		let branchArr = cloneData.filter(child => {
			//返回每一项的子级数组
			return father[id] == child[parentId]
		});
		branchArr.length > 0 ? father.children = branchArr : '';
		//返回第一层
		return father[parentId] == rootId;
	});
	return treeData != '' ? treeData : data;
}

在main.js里全局引入文件

import {handleTree } from "@/utils/封装的文件名";
// 全局方法挂载
Vue.prototype.handleTree = handleTree

列表请求方式

getList() {
          this.loading = true;
          pfgl.getpfxpzList(this.queryParams).then(res => {
              this.loading = false;
              if(res.data){
                  res.data.forEach((d)=>{
                    d.children=[]
                     if(!d.parentId){
                    d.parentId=0
                  }
                this.menuList = this.handleTree(res.data);
                  }
                  )
              }else{
                this.menuList=[]
              }
          });
			},
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值