|
@@ -16,7 +16,7 @@ func GetSysDepartmentTree(list []*models.SysDepartmentList, parentId int, deepth
|
|
if deepth == 2 && (v.Level > 2 || v.Type == models.SubCompany) {
|
|
if deepth == 2 && (v.Level > 2 || v.Type == models.SubCompany) {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
- if deepth > 2 && (v.Level == 2 || v.Type == models.SubCompany) {
|
|
+ if deepth > 2 && (v.Level != deepth || v.Type == models.SubCompany) {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
if v.ParentId == parentId {
|
|
if v.ParentId == parentId {
|