diff --git a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.view.portal.js b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.view.portal.js
index 840103d8..7e60431d 100755
--- a/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.view.portal.js
+++ b/com.actionsoft.apps.coe.pal/web/com.actionsoft.apps.coe.pal/lib/designer/extend/js/designer.extend.link.view.portal.js
@@ -305,23 +305,23 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
// 目前支持到文本的输入 ,需求定下了再改
constr = '
';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + obj.value + ' | ';
+ constr += '' + '【' + obj.name + '】'+':' + obj.value + ' | ';
constr += '
';
} else if (!obj.readonly && obj.type == "link") {
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
// constr += '' + obj.value + ' | ';
- constr += '' + '【活动描述】' + obj.name + ':' + '' + obj.value + '' + ' | ';
+ constr += '' + '【' + obj.name + '】'+':' + '' + obj.value + '' + ' | ';
constr += '
';
} else if (!obj.readonly && obj.type == "number") {
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + obj.value + ' | ';
+ constr += '' + '【' + obj.name + '】'+':' + obj.value + ' | ';
constr += '
';
} else if (!obj.readonly && obj.type == "boolean") {
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + ' | ';
+ constr += '' + '【' + obj.name + '】'+ ':' + ' | ';
constr += '
';
} else if (!obj.readonly && obj.type == "textarea") {
constr = '';
@@ -329,7 +329,7 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
if (obj.value == undefined) {
obj.value = '';
}
- constr += '' + '【活动描述】' + obj.name + ':' + obj.value.replace(/\n/g, ' ') + ' | ';
+ constr += '' + '【' + obj.name + '】'+ ':' + obj.value.replace(/\n/g, ' ') + ' | ';
constr += '
';
} else if (obj.readonly && obj.type == "relation") {
var relationValue = "";
@@ -338,12 +338,12 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
}
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + relationValue + ' | ';
+ constr += '' + '【' + obj.name + '】'+ ':' + relationValue + ' | ';
constr += '
';
} else if (obj.type == "select" || obj.type == "select_m") {
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + obj.value + ' | ';
+ constr += '' + '【' + obj.name + '】'+ ':' + obj.value + ' | ';
constr += '
';
selectFlag = true;
@@ -362,7 +362,7 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
}
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + relationValue + ' | ';
+ constr += '' + '【' + obj.name +'】'+ ':' + relationValue + ' | ';
constr += '
';
} else if (obj.readonly && obj.type == "deptAddress") {
deptAddress = true;
@@ -374,7 +374,7 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
}
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + relationValue + ' | ';
+ constr += '' + '【' + obj.name +'】'+ ':' + relationValue + ' | ';
constr += '
';
} else if (obj.readonly && obj.type == "awsorg") {
var relationValue = "";
@@ -383,7 +383,7 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
}
constr = '';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + relationValue + ' | ';
+ constr += '' + '【' + obj.name +'】'+ ':' + relationValue + ' | ';
constr += '
';
} else if (obj.readonly && obj.type == "hidden") {
constr = ''
@@ -399,7 +399,7 @@ function getPrivateAttributeHtml(attributesJsonArray, tbodyId, shape) {
}
constr = '
';
/*constr += '| ' + obj.name + ' | ';*/
- constr += '' + '【活动描述】' + obj.name + ':' + ' ' + tableInput + '' + ' | ';
+ constr += '' + '【' + obj.name +'】'+':' + ' ' + tableInput + '' + ' | ';
constr += '
';
}
}
@@ -1457,7 +1457,7 @@ function initProcessDesc() {
for(var i = 1; i <= length; i++) {
var obj = processDesc[i];
t += '| ';
- t += ' ' +'【流程属性】'+ obj.name + ': ';
+ t += '' + "【"+obj.name +"】"+ ': ';
var value = obj.value;
if (value == undefined) {
value = '';
|