Commit fd774571 by guojuxing

查询日志操作模块权限树修改

parent 2fa1a4f9
......@@ -100,7 +100,7 @@ public class MenuController {
if (list != null) {
for (int j = 0, length = list.size(); j < length; j++) {
MenuDTO menuDTO = list.get(j);
if (storeGroupId == menuDTO.getParentId() && menuDTO.getLevel().intValue() >= 2) {
if (storeGroupId == menuDTO.getParentId() && menuDTO.getLevel().intValue() <= 2) {
Map<String, Object> data = new HashMap<>(16);
data.put("menuId", menuDTO.getMenuId());
data.put("menuName", menuDTO.getMenuName());
......
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