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 5c52fa32..6d682d32 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 @@ -2655,12 +2655,17 @@ public class CoeProcessLevelWeb extends ActionWeb { }else if ("table".equals(type)){ JSONObject table = JSON.parseObject(jsonValue); - String tableName = table != null ? (String)table.get("name") : ""; + int subTableSize = 0; + JSONArray subTable = table.getJSONArray("table"); + if (null != subTable){ + subTableSize = subTable.size(); + } + String tableInput = subTableSize > 1 ? "请查看" : "请输入"; - input = "" - + "" - + "" + input = "" + + "" + + "" + " " + "" + "";