el-tree 动态树结构

el-table里边有个属性tree-props。

支持树类型的数据的显示。当 row 中包含 children 字段时,被视为树形数据。渲染树形数据时,必须要指定 row-key。通过指定 row 中的 hasChildren 字段来指定哪些行是包含子节点。children 与 hasChildren 都可以通过 tree-props 配置。

如下图。就是表格中的树形结构删除一行和新增一行。

直接上代码:

html:

 <el-table :data="tableData" style="width: 100%;margin-bottom: 20px;" row-key="id" border default-expand-all :tree-props="{children: 'children', hasChildren: 'hasChildren'}">

        <el-table-column label="参数" width="250">

            <template slot-scope="scope">

                <el-input :disabled="isDetails" style="width:120px;" size="small" v-model="scope.row.name" placeholder="请输入参数名" :maxlength="30" show-word-limit @blur="handleBlur(scope.row.name,'参数名')"></el-input>

            </template>

        </el-table-column>

        <el-table-column v-if="!isDetails" label="操作" align="center">

            <template slot-scope="scope">

                <el-button v-if="!isUrl && (scope.row.level && Number(scope.row.level) < 4)" size="mini" type="text" @click.native.prevent="addChild(scope.row)">设置子字段</el-button>

                <el-button v-if="!isDetails" size="mini" type="text" @click.native.prevent="deleteRow(scope.row, scope.$index)">删除</el-button>

            </template>

        </el-table-column>

    </el-table>

    <el-button v-if="!isDetails" type="primary" icon="el-icon-plus" size="mini" @click.native.prevent="addNew">新增</el-button>

</div>

</template>

 js:增加一行,这个Id要是唯一的值,所以最好前端生成的时候用多位随机码,不建议用下图中的,如果id后台处理就不用管了。

 删除一行:

 

  let idx = 1;

   addChild(row) {

            this.addRow(1, row); //在行中增加children

        },

   addNew() {

            this.addRow();//另起新增一行

        },

  addRow(type, row) {

            // type-0- 新增第一级节点, type-1- 新增子节点

            let id = type ? row.id + "_" + row.children.length : "" + idx;

            let pid = type ? row.id : 0;

            let newObj = {

                id,//行id

                pid,//行的父级id

                name: "",

                children: [],

            };

            if (type) {

                if (!row.children) {

                    row.children = [];

                }

                row.children.push(newObj);

            } else {

                this.tableData.push(newObj);

                idx++;

            }

        },

        // 删除一行

        deleteRow(row, i) {

            if (row.pid) {

                // 有父级元素,先找到父级元素,再从父级元素的children中删除

                this.deleteChildByid(this.tableData, row.pid, row.id);

            } else {

                let fid = this.tableData.findIndex((v) => {

                    return v.id == row.id;

                });

                this.tableData.splice(fid, 1);

            }

        },

  deleteChildByid(arr, pid, id) {

            let that = this;

            arr.forEach((v, i) => {

                if (v.id == pid) {

                    let item = v.children;

                    let idx = item.findIndex((p) => p.id === id);

                    item.splice(idx, 1);

                } else {

                    if (v.children && v.children.length > 0) {

                        that.deleteChildByid(v.children, pid, id);

                    }

                }

            });

        },

 删除一行与新增一行就完成了。

el-tree 树结构渲染可以通过将数据渲染到 options 中实现。在 el-select 中,当数据中包含 children 字段时,el-tree 会将其视为树形数据进行渲染。为了正确渲染树形数据,需要指定一个唯一的 row-key,并通过 tree-props 配置指定 children 字段和 hasChildren 字段。可以通过点击 tree 树形导航来关联 tree 和 table,每个 tree 树都有一个对应的唯一 id 值和一个不唯一的 orgid 值。在添加时,将数据的 id 值传给后端,后端返回的数据中包含 children 字段即可。通过 @node-click="handleNodeClick" 可以获取到这两个 id 值。总结来说,el-tree 树结构渲染需要注意指定 row-key、配置 tree-props、处理点击事件等。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* *3* [el-tree树形控件的应用](https://blog.csdn.net/GengFuGuo/article/details/120481663)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [el-tree 动态树结构](https://blog.csdn.net/huangjinsheng1988/article/details/123015151)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值