Commit 04fd1f56 by guojuxing

权限集,去除非菜单页面的过滤

parent 96f225f6
......@@ -181,7 +181,7 @@ public class RoleController {
List<Map<String, Object>> result = new ArrayList<>();
if (list != null) {
for (MenuDTO menuDTO : list) {
if (storeGroupId == menuDTO.getParentId() && menuDTO.getIsShow().intValue() == 1) {
if (storeGroupId == menuDTO.getParentId()) {
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