|
|
@ -467,10 +467,13 @@ public class IcCustomerReportServiceImpl extends BaseServiceImpl<IcCustomerRepor |
|
|
|
JSONArray array = new JSONArray(); |
|
|
|
ArrayList<String> ids = new ArrayList<>(); |
|
|
|
|
|
|
|
// 这种可能是pageData的
|
|
|
|
if (data instanceof JSONObject) { |
|
|
|
// 这种可能是pageData的
|
|
|
|
JSONObject jo = (JSONObject) data; |
|
|
|
array = jo.getJSONArray("list"); |
|
|
|
} else { |
|
|
|
// 可能是不分页的列表
|
|
|
|
array = (JSONArray) data; |
|
|
|
} |
|
|
|
|
|
|
|
for (ListIterator<Object> it = array.listIterator(); it.hasNext(); ) { |
|
|
|