效果图:
代码部分:
style=”width: 100%; margin-bottom: 20px“
}”
>
<el–table–column width=”105″>
<template slot=”header” slot-scope=”scope“>
/>
</template>
@change=”checkChange(scope.row)”
/> </template
<el-table–column prop=”label” label=”名字” header–align=”center” align=”center” />
</el-table>
</div>
</template>
<script>
data () {
return {
{
id: 1,
label: ‘一级 1’,
{
id: 4,
label: ‘二级 1-1’,
{
id: 9,
label: ‘三级 1-1-1’
},
{
id: 10,
parentId: 4,
label: ‘三级 1-1-2’
}
]
},
{
id: 7,
parentId: 1,
label: ‘二级 1-2’
}
]
},
{
id: 2,
label: ‘一级 2’,
parentId: 0,
{
id: 5,
parentId: 2,
label: ‘二级 2-1’
},
{
id: 6,
parentId: 2,
label: ‘二级 2-2’
}
]
}
],
childrenArr: [] // 当前选中节点的孩子数组
}
},
mounted () {
this.treeToArr(this.listTreeData)
},
methods: {
treeToArr (data) {
this.menuData.push(item)
if (item.children && item.children.length > 0) {
}
})
},
// 全选复选框
checkAllIn () {
this.$refs.multipleTable.data.forEach((items) => {
this.$set(items, ‘selected’, this.selecteds)
if (items.children && items.children.length > 0) {
this.deepCheck(items.children, this.selecteds)
}
})
},
data.forEach((item) => {
this.$set(item, ‘selected’, val)
if (item.children && item.children.length > 0) {
this.deepCheck(item.children, val)
}
})
},
// 处理树表中子带父的情况
if (this.curParentId !== row.parentId) {
this.childrenArr.length = 0
this.menuData.forEach((item) => {
if (item.parentId === row.parentId) {
this.childrenArr.push(item)
}
})
}
this.curParentId = row.parentId
const filter = this.childrenArr.filter((i) => i.selected)
if (filter.length === this.childrenArr.length) {
this.menuData.forEach((item) => {
if (item.id === this.curParentId) {
this.$set(item, ‘selected’, true)
}
})
} else {
this.menuData.forEach((item) => {
if (item.id === this.curParentId) {
this.$set(item, ‘selected’, false)
}
})
}
},
// 父选子的情况
if (row.children) {
if (row.selected) {
row.children.forEach((item) => {
this.$set(item, ‘selected’, true)
if (item.children && item.children.length > 0) {
this.deepCheck(item.children, true)
}
})
this.$set(row, ‘selected’, true)
} else {
row.children.forEach((item) => {
this.$set(item, ‘selected’, false)
if (item.children && item.children.length > 0) {
this.deepCheck(item.children, false)
}
})
}
}
// 子带父的情况
if (row.selected) {
} else {
}
}
}
}
</script>
<style>
</style>
说明:代码中的数据以及字段可根据实际情况修改,此处仅作为例子参考。
原文地址:https://blog.csdn.net/m0_46318298/article/details/128341724
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_7129.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!