Home > Web Front-end > JS Tutorial > body text

How does vue.js implement tree table encapsulation? How to implement tree table in vue.js

不言
Release: 2018-07-26 10:47:05
Original
5236 people have browsed it

The content shared with you in this article is about how vue.js implements the encapsulation of tree tables? The method of implementing tree table in vue.js is very detailed. Next, let’s take a look at the specific content. I hope it can help everyone.

Main technical points: Recursive implementation of vue sub-components and implementation of related styles

Tree table implementation

  • Rendering (Demo)

How does vue.js implement tree table encapsulation? How to implement tree table in vue.js

  • #Main code

The index.vue page implements business logic code, such as the implementation of some operation buttons on the tree table and data acquisition.
<template>
  <p>
    </p>
<h1>树表格实现</h1>
    <tree-table></tree-table>
  
</template>
<script>
import treeTable from &#39;@/components/tree-table.vue&#39;
export default {
  data() {
    return {
      list: [], // 请求原始数据
      treeDataSource: [] // 组合成树表格接收的数据
    }
  },
  components: {
    treeTable
  },
  methods: {
    orderByFunc(val) {
      alert(&#39;排序&#39;)
      alert(val)
    },
    actionFunc(m) {
      alert(&#39;编辑&#39;)
    },
    deleteFunc(m) {
      alert(&#39;删除&#39;)
    }
  }
}
</script>
Copy after login
原始数据`list`:是不包含子数据的数据结构,即没有层级结构,例如:
[{id:111,parentId:0,name:'父及'},{id:111,parentId:111,name:'子级'}...],通过parentId来获取对应父子层级结构
`treeDataSource`:是树表格需要的数据结构,例如:
[{id:0,name:'父及',children:[{id:10,name:'子级',children:[]}]},...]
Copy after login
If the background returns you the original data format, you can use the following method to encapsulate it into a data structure that can be used by the tree table:
    getTreeData() {
      // 取父节点
      let parentArr = this.list.filter(l => l.parentId === 0)
      this.treeDataSource = this.getTreeData(this.list, parentArr)
    },
    // 这里处理没有children结构的数据
    getTreeData(list, dataArr) {
      dataArr.map((pNode, i) => {
        let childObj = []
        list.map((cNode, j) => {
          if (pNode.Id === cNode.parentId) {
            childObj.push(cNode)
          }
        })
        pNode.children = childObj
        if (childObj.length > 0) {
          this.getTreeData(list, childObj)
        }
      })
      return dataArr
    }
Copy after login
tree-table.vue page. This page is the key page to implement the tree table. The main code is as follows:
<template>
    <p>
        </p>
<p>
            </p>
<table>
                <tr>
                    <td>职位名称</td>
                    <td>负责人</td>
                    <td>
                        创建时间
                        <p>
                            <span></span>
                            <span></span>
                        </p>
                    </td>
                    <td>工作经验</td>
                    <td>发布时间</td>
                    <td>操作</td>
                </tr>
            </table>
        
        <p>
            </p>
<p>
                </p>
<table>0'>
                    <tbody>
                        <tr>
                            <td>
                                <tree-item>
                                </tree-item>
                            </td>
                        </tr>
                    </tbody>
                </table>
            
        
    
</template>
Copy after login
First of all, the sub-component

tree-item is not introduced on the page, but it can also be used normally. Here is the key point, because this subcomponent needs to be implemented recursively, so it needs to be dynamically registered into the current component. The code is as follows (because there is too much code, I will post a picture to explain it first. Click here to see the source code):

How does vue.js implement tree table encapsulation? How to implement tree table in vue.js

Does the sub-component here look weird? Yes, but for the sake of recursion itself, I can only think of this method for the time being. If there is a better way, please leave a message and correct me.


So, where is the structure of the tree table implemented? ? Yes, it is in the template (
template) of the subcomponent. The code will not be posted here. You can move to the source code to view it.

Correction, the original writing method has been updated and implemented using recursive components, so that the page looks clearer.

    components: {
            treeItem: () => import('./tree-item.vue')
    }
Copy after login
One additional point: Don’t just look at the js part, the css part is the key to this tree form. Of course, I use a lot of calculated attributes to judge the display of various styles. Another way is to implement it in the initTreeData method. This method is to process or add some information used by our tree table. For example, the offset of the level line I am implementing now is m.bLeft = level === 1 ? 34 : (level - 2) * 16 34 .


Related recommendations:

vue.js implements single pop-up box

Vue.js 2.0 implements Baidu search bar

The above is the detailed content of How does vue.js implement tree table encapsulation? How to implement tree table in vue.js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!