Commit bde90c38 by guojx

导购列表接口修复

parent d3a07f39
......@@ -133,8 +133,8 @@ public class DataController {
jsonObject.put("clerkId", normalList.stream().collect(Collectors.joining(",")));
Map<String, Object> res = DataApiUtils.http(jsonObject.toJSONString(), apolloKey);
Page page = DataApiUtils.getPageData(res);
List<JSONObject> pageList = DataApiUtils.getPageList(res);
if (CollectionUtils.isEmpty(pageList)) {
List<JSONObject> pageList = page.getResult();
if (pageList == null) {
pageList = new ArrayList<>();
}
if (isFirstPage) {
......
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