feat: 医保分类树优化

dev_ksck2.0
chenhc 1 year ago
parent 9eb4e5f092
commit 3852bd3a6a

@ -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))
}
},

Loading…
Cancel
Save