From 7bd41d025a6cbc0c951c8b7f523d337c59b4e31a Mon Sep 17 00:00:00 2001 From: "mrs_12345@163.com" Date: Mon, 11 Jul 2022 15:14:53 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E8=AE=A1=E5=99=A8=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=B1=9E=E6=80=A7input=E6=A1=86placeholder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pal/repository/web/CoeProcessLevelWeb.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 f27a7877..1ceb809f 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 @@ -2624,9 +2624,9 @@ public class CoeProcessLevelWeb extends ActionWeb { inputValue = inputValue.replaceAll("'", "'"); inputValue = inputValue.replaceAll("\"", """); boolean isRequired = attributeModel.getIsRequired(); + String desc = attributeModel.getDesc(); - - String input = ""; + String input = ""; String type = attributeModel.getType(); @@ -2636,12 +2636,12 @@ public class CoeProcessLevelWeb extends ActionWeb { requiredSpan = ""; } if ("textarea".equals(type)) { - input = ""; + input = ""; } else if ("select".equals(type) || "select_m".equals(type)) { if (readonly) { - input = ""; + input = ""; } else { - input = ""; + input = ""; } String ref = attributeModel.getRef(); if (!UtilString.isEmpty(ref)) { @@ -2650,13 +2650,13 @@ public class CoeProcessLevelWeb extends ActionWeb { } else if ("relation".equals(type)) {// 关联pal模型文件、形状 JSONObject refObj = JSONObject.parseObject(attributeModel.getRef()); event = "readonly='readonly' relationFileId=\"" + fileId + "\" relationShapeId=\"" + shapeId + "\" groupPath=\"" + attributeModel.getGroupPath() + "\" ref="+ refObj + " onclick=\"openRelationDialog($(this), 'saveContent')\""; - input = ""; + input = ""; } else if ("awsorg".equals(type)) {// 关联bpm组织架构 JSONObject refObj = JSONObject.parseObject(attributeModel.getRef()); event = "readonly='readonly' data-value="+ dataArr +" groupPath=\"" + attributeModel.getGroupPath() + "\" ref="+ refObj +" onclick=\"openRelationAwsorgDialog($(this))\""; - input = ""; + input = ""; } else if("DateTimePicker".equals(type)) { - input = "" + ""; + input = "" + ""; }else if ("table".equals(type)){ JSONObject table = JSON.parseObject(jsonValue); @@ -2681,7 +2681,7 @@ public class CoeProcessLevelWeb extends ActionWeb { } else { if (readonly) { - input = ""; + input = ""; } } content.append(" " + attributeModel.getNewTitle() + " " + requiredSpan + input + " ");