对模型上的活动进行更改,更改由获取原来的活动标题修改为获取活动的文本

This commit is contained in:
Mr-wang 2023-09-08 15:46:46 +08:00
parent 572e49ace3
commit 181c6e8f89

View File

@ -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 + "\"" + "连线没有出线");
}