|
|
|
@ -260,6 +260,18 @@ export default {
|
|
|
|
|
ids.push(children[i].categoryId)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//如果一级节点 无子节点也删除
|
|
|
|
|
this.dataList.forEach( x => {
|
|
|
|
|
let targetArray = []
|
|
|
|
|
if(x.level == 1) {
|
|
|
|
|
for (let i = 0; i < x.children.length; i++) {
|
|
|
|
|
targetArray.push(x.children[i].categoryId)
|
|
|
|
|
}
|
|
|
|
|
if (this.arrayContainsAll(ids, targetArray))
|
|
|
|
|
ids.push(x.categoryId)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
let del = {
|
|
|
|
|
deptCode: this.query.deptCode,
|
|
|
|
|
deptCategory: ids
|
|
|
|
@ -278,6 +290,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
onReset(){
|
|
|
|
|
this.query.deptCode = this.$store.getters.locDeptCode
|
|
|
|
|
},
|
|
|
|
|
arrayContainsAll(sourceArray, targetArray) {
|
|
|
|
|
return targetArray.every(item => sourceArray.includes(item))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|