1、关键点

2、父组件

<template>
<div>
<div class="btn-title">
<el-button @click="addRule(ruleDataList.id)">添加父节点</el-button>
</div>
<RuleTable :pid="ruleDataList.id" :ruleData="ruleDataList.children" @delRule="delRule" @addRule="addRule"></RuleTable>
</div>
</template>
<script>
import RuleTable from './RuleTable.vue'
export default {
components: {
RuleTable
},
data() {
return {
ruleDataList: {
id: this.$nanoid(),//自定义id
lvl: 1,//节点等级
theme: '',//主题
time: '',//次数
children: []
}
}
},
methods: {
addRule(id) {
if (id === this.ruleDataList.id) {//>>>一级节点
this.ruleDataList.children.push({
id: this.$nanoid(),//自定义id
lvl: 1,//节点等级
theme: '',//主题
time: '',//次数
children: []
})
} else {
this.ruleDataList.children.map(e => {
if (e.id === id) {//>>>二级节点
let obj = JSON.parse(JSON.stringify(e))
obj.id = this.$nanoid();//自定义id
obj.lvl = 2
e.children.push(obj, {
id: this.$nanoid(),//自定义id
lvl: 2,//节点等级
theme: '',//主题
time: '',//次数
children: []
})
} else {
let flag = e.children.find(i => i.id === id)
if (flag) {//>>>三级节点
e.children.push({
id: this.$nanoid(),//自定义id
lvl: 2,//节点等级
theme: '',//主题
time: '',//次数
children: []
})
}
}
})
}
},
delRule(id) {
this.ruleDataList.children = this.ruleDataList.children.filter(i => {
// 如果是二级节点
if (i.children && i.children.length > 0) {
i.children = i.children.filter(j => {
return j.id != id
})
return i
}
// 如果是一级节点
return i.id != id
}).map(k => {
if (k.children && k.children.length === 1) {
let obj = JSON.parse(JSON.stringify(k.children[0]))
obj.lvl = 1
return obj //如果只有一个二级节点,则变为一级节点
}
return k //其余,则原样返回
})
}
}
}
</script>
<style>
.btn-title {
display: flex;
justify-content: end;
margin-bottom: 10px;
}
</style>

3、子组件RuleTable(递归调用)

<template>
<el-card style="margin-top:5px">
<el-row>
<el-col :span="2" align="center" v-if="ruleData.length > 1">
<div class="left-top" :style="'height:' + halfHeight + 'px'"></div>
<div class="left-center">组</div>
<div class="left-bottom" :style="'height:' + halfHeight + 'px'"></div>
</el-col>
<el-col :span="22" :id="pid">
<el-row v-for="item in ruleData" :key="item.id">
<RuleTable v-if="item.children.length > 0" :pid="item.id" :ruleData="item.children"
@delRule="delRule" @addRule="addRule"></RuleTable>
<el-form v-else>
<el-col :span="8" class="pd5">
<el-form-item prop="theme">
<el-input v-model="item.theme" placeholder="请输入主题"></el-input>
</el-form-item>
</el-col>
<el-col :span="8" class="pd5">
<el-form-item prop="time">
<el-input v-model="item.time" placeholder="请输入次数"></el-input>
</el-form-item>
</el-col>
<el-col :span="6" class="pd5">
<el-button type="danger" @click="delRule(item.id)">删除</el-button>
<el-button type="primary" @click="addRule(item.id)">新增</el-button>
</el-col>
</el-form>
</el-row>
</el-col>
</el-row>
</el-card>
</template>
<script>
export default {
name: 'RuleTable', //子组件的name名要和组件名一致
props: {
ruleData: {
type: Array,
default: () => []
},
pid: {
type: String,
default: () => ''
}
},
data() {
return {
halfHeight: 0,//竖线的高度
}
},
watch: {
ruleData: {
handler(val) {
console.log("ruleData--val:", val)
if (val) {
this.updateHeight()
}
},
deep: true,
immediate: true
}
}, methods: {
delRule(id) {
this.$emit('delRule', id)
},
addRule(id) {
this.$emit('addRule', id)
},
updateHeight() {
this.$nextTick(() => {
let leftHeight = document.getElementById(this.pid + '').offsetHeight
console.log("实时高度--leftHeight:", leftHeight)
this.halfHeight = (leftHeight - 21) / 2
})
}
}
}
</script>
<style>
.left-top {
width: 2px;
background-color: #bbb;
} .left-bottom {
width: 2px;
background-color: #bbb;
} .pd5 {
padding-left: 5px;
}
</style>

4、效果

vue学习之-----组件递归调用的更多相关文章

  1. vue学习之组件

    组件从注册方式分为全局组件和局部组件. 从功能类型又可以分为偏视图表现的(presentational)和偏逻辑的(动态生成dom),推荐在前者中使用模板,在后者中使用 JSX 或渲染函数动态生成组件 ...

  2. 【vue】父组件主动调用子组件 /// 非父子组件传值

    一  父组件主动调用子组件: 注意:在父组件使用子组件的标签上注入ref属性,例如: <div id="home"> <v-header ref="he ...

  3. 浅谈vue学习之组件通信

    vue用组件化简化了我们编写代码的复杂度,组件之间经常会出现数据传递的情况,那么组件之间是怎样通信的呢? 使用props传递数据 组件实例的作用域是孤立的.这意味着不能 (也不应该) 在子组件的模板内 ...

  4. vue学习之四组件系统

    vue.js既然是框架,那就不能只是简单的完成数据模板引擎的任务,它还提供了页面布局的功能.本文详细介绍使用vue.js进行页面布局的强大工具,vue.js组件系统. 一.Vue.js组件系统 每一个 ...

  5. vue:子组件通过调用父组件的方法的方式传参

    在本案例中,由于子组件通过调用父组件的方法的方式传参,从而实现修改父组件data中的对象,所以需要啊使用$forceUpdate()进行强制刷新 父组件: provide() { return { s ...

  6. Vue学习之--------组件的基本使用(非单文件组件)(代码实现)(2022/7/22)

    文章目录 1.为啥要使用组件 2.基本使用 3.代码实例 4.测试效果 5.注意点 1.为啥要使用组件 好用啊.像堆积木一样 2.基本使用 Vue中使用组件的三大步骤: 一.定义组件(创建组件) 二. ...

  7. Vue学习之组件切换及父子组件小结(八)

    一.组件切换: 1.v-if与v-else方式: <!DOCTYPE html> <html lang="en"> <head> <met ...

  8. Vue学习之--------组件嵌套以及VueComponent的讲解(代码实现)(2022/7/23)

    欢迎加入刚建立的社区:http://t.csdn.cn/Q52km 加入社区的好处: 1.专栏更加明确.便于学习 2.覆盖的知识点更多.便于发散学习 3.大家共同学习进步 3.不定时的发现金红包(不多 ...

  9. Vue学习笔记-组件通信-子传父(自定义事件)

    props用于父组件向子组件传递数据,还有一种比较常见的是子组件传递数据或事件到父组件中.我们应该如何处理呢?这个时候,我们需要使用自定义事件来完成.什么时候需要自定义事件呢?当子组件需要向父组件传递 ...

  10. vue 学习一 组件生命周期

    先上一张vue组件生命周期的流程图 以上就是一个组件完整的生命周期,而在组件处于每个阶段时又会提供一些周期钩子函数以便我们进行一些逻辑操作,而总体来讲 vue的组件共有8个生命周期钩子 beforeC ...

随机推荐

  1. Vue 26 plugins

    1 简介 它是用来增强vue的.它是包含install方法的一个对象,install的第一个参数是Vue,第二个以后参数是插件使用者传入的参数 插件里面可以配置全局过滤器.全局指令.混入.Vue原型上 ...

  2. Linux07-常用命令-权限

    1.组 1.1基本说明 在linux中的每个用户必须属于一个组,不能独立于组外.在linux中每个文件有所有者.所在组.其它组的概念. 1) 文件所有者 谁创建的这个文件,文件的所有者就是谁 2) 文 ...

  3. 【SDOI2015】排序

    #include<cstdio> #include<iostream> using namespace std; typedef long long LL; const int ...

  4. trollcave-v1-2

    trollcave-v1-2 目录 trollcave-v1-2 1 信息收集 1.1 端口扫描 1.2 后台目录扫描 1.3 收集网站相关信息 1.3.1 收集网站用户名与角色信息 1.3.2 收集 ...

  5. 超声和免疫学指标的特征能否反映RA临床缓解的表型?[EULAR2015_THU0121]

    超声和免疫学指标的特征能否反映RA临床缓解的表型?   THU0121 DO THE IMMUNOLOGICAL AND ULTRASOUND CHARACTERISTICS REFLECT THE ...

  6. 代码随想录算法训练营day14 | leetcode 层序遍历 226.翻转二叉树 101.对称二叉树 2

    层序遍历 /** * 二叉树的层序遍历 */ class QueueTraverse { /** * 存放一层一层的数据 */ public List<List<Integer>&g ...

  7. MATH026th: 《矩斋筹算丛刻》

    矩斋筹算丛刻 (清)劳乃宣辑 清光绪刻朱墨套印本 2函22册竹纸线装 提要:内含 <古筹算考释>.<古筹算考释续编>.<筹算浅释>.<筹算分法浅释>.& ...

  8. Kronecker convolution 克罗内克卷积理解

    在了解空洞卷积时候发现了Kronecker convolution是对空洞卷积的改进,于是学习了一下 ,原文连接:1812.04945v1.pdf (arxiv.org) 个人理解如下: 首先,对于一 ...

  9. C# 属性空引用警告

    whereExpression = whereExpression.And(u => u.ValueInterger.ToString() != null &&** u.Valu ...

  10. 报错com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect datetime value: '1' for column 'date' at row 1问题解决

    出现 com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Incorrect datetime value: '1' ...