特殊处理 流程手册获取不到部分数据属性value值
This commit is contained in:
parent
fd980562b0
commit
00b11f9e77
Binary file not shown.
@ -129,6 +129,10 @@ public class ShapeUtil {
|
||||
if( !jsonObj.containsKey("groupPath") || UtilString.isEmpty(jsonObj.getString("groupPath")) ) {
|
||||
continue; //排除组
|
||||
}
|
||||
//特殊处理key为textarea 实际应为type的异常
|
||||
if (!jsonObj.containsKey("type")&&jsonObj.containsKey("textarea")){
|
||||
jsonObj.put("type",jsonObj.get("textarea"));
|
||||
}
|
||||
if( !jsonObj.containsKey("type") || UtilString.isEmpty(jsonObj.getString("type")) ) {
|
||||
continue; //排除无type的
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user