diff --git a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java index 92833787..e1a45c4d 100755 --- a/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java +++ b/com.actionsoft.apps.coe.pal/src/com/actionsoft/apps/coe/pal/pal/repository/web/CoeProcessLevelWeb.java @@ -9524,7 +9524,7 @@ public class CoeProcessLevelWeb extends ActionWeb { JSONObject definition = JSONObject.parseObject(obj); JSONObject elements = definition.getJSONObject("elements"); JSONObject string = elements.getJSONObject(to_id); - String title = string.getString("title"); + String title = string.getString("text"); sb6.append("\"" + title + "\"").append("连线没有入线"); list_linker.add("\"" + title + "\"" + "连线没有入线"); } @@ -9534,7 +9534,7 @@ public class CoeProcessLevelWeb extends ActionWeb { JSONObject definition = JSONObject.parseObject(obj); JSONObject elements = definition.getJSONObject("elements"); JSONObject string = elements.getJSONObject(from_id); - String title = string.getString("title"); + String title = string.getString("text"); sb6.append("\"" + title + "\"").append("连线没有出线"); list_linker.add("\"" + title + "\"" + "连线没有出线"); }