Commit d208b68d by guojuxing

菜单查询修改:不管是否是菜单,都查询出来

parent e7c3f42b
......@@ -689,8 +689,7 @@ public class MenuApiServiceImpl implements MenuApiService {
List<MenuDTO> list = null;
if (level < 5) {
for (TabSysMenu menu : menuList) {
if (level == menu.getLevel() && menu.getIsShow().intValue() == 1
&& menu.getParentId().intValue() == parentId) {
if (level == menu.getLevel() && menu.getParentId().intValue() == parentId) {
MenuDTO menuDTO = EntityUtil.changeEntityByJSON(MenuDTO.class, menu);
menuDTO.setChildren(this.treeMenu(menuList, menu.getLevel().intValue() + 1, menuDTO.getMenuId()));
if (list == null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment