diff --git a/com.actionsoft.apps.coe.pal/template/page/pal.pl.repository.designer.htm b/com.actionsoft.apps.coe.pal/template/page/pal.pl.repository.designer.htm
index 88548917..5f65c074 100755
--- a/com.actionsoft.apps.coe.pal/template/page/pal.pl.repository.designer.htm
+++ b/com.actionsoft.apps.coe.pal/template/page/pal.pl.repository.designer.htm
@@ -2948,7 +2948,7 @@
- 附件格式支持:jpg, jpeg, gif, png, bmp, pdf, doc, docx, ppt, pptx, xls, xlsx, txt
+ 附件格式支持:jpg, jpeg, gif, png, bmp, pdf, doc, docx, ppt, pptx, xls, xlsx, txt 文件大小不超过10M
@@ -2977,7 +2977,7 @@
- 附件格式支持:doc, docx
+ 附件格式支持:doc, docx 文件大小不超过10M
diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js
index f9febb1f..b6e9f2e8 100755
--- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js
+++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.js
@@ -3133,13 +3133,20 @@ function getRelevanceShapeNameByShapeId(objIds, shapeId) {
}
}
}
- //判断如果为岗位/角色,鼠标悬浮显示
+ //判断如果为岗位/角色/相关文件/支持文件 鼠标悬浮显示
if(objId=="post"){
$("input[objid='" + objId + "']").attr('title', shapeNames.join(","));
}
if(objId=="role"){
$("input[objid='" + objId + "']").attr('title', shapeNames.join(","));
}
+ if(objId=="R_relevant_flies"){
+ $("input[objid='" + objId + "']").attr('title', shapeNames.join(","));
+ }
+ if(objId=="support_files"){
+ $("input[objid='" + objId + "']").attr('title', shapeNames.join(","));
+ }
+
$("input[objid='" + objId + "']").val(shapeNames.join(","));
$("input[objid_shapeId='" + objId + "']").val(shapeRelationValue.join(","));
$("input[objid_shapeId='" + objId + "']").attr('ref', JSON.stringify(ref));