Commit c7f0bdac authored by lisong's avatar lisong

更新

parent 67c30386
......@@ -243,7 +243,9 @@ public class WelderServiceImpl {
if (String.valueOf(dataItem.get("column")).equals("image") && !ObjectUtils.isEmpty(dataItem.get("column")) && !ObjectUtils.isEmpty(dataItem.get("value"))) {
String value1 = String.valueOf(dataItem.get("value"));
List<Map<String, Object>> imageMap = (List<Map<String, Object>>) JSON.parse(value1);
map.put("files", imageMap);
if (!ObjectUtils.isEmpty(imageMap)){
map.put("files", imageMap);
}
}
map.put(String.valueOf(dataItem.get("column")), dataItem.get("value"));
});
......
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