Commit 8f587d16 by guojuxing

门店分组接口调整

parent afe6efda
...@@ -53,6 +53,7 @@ public class StoreGroupController { ...@@ -53,6 +53,7 @@ public class StoreGroupController {
Map<String, Object> data = new HashMap<>(16); Map<String, Object> data = new HashMap<>(16);
data.put("value", t.getStoreGroupId()); data.put("value", t.getStoreGroupId());
data.put("label", t.getStoreGroupName()); data.put("label", t.getStoreGroupName());
data.put("groupLevel", t.getGroupLevel());
List<Map<String, Object>> children = changeListToTree(t.getStoreGroupId(), list); List<Map<String, Object>> children = changeListToTree(t.getStoreGroupId(), list);
if (children == null || children.size() < 1) { if (children == null || children.size() < 1) {
data.put("children", null); data.put("children", 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