流程阅览显示修改
This commit is contained in:
parent
5614c61d8b
commit
acb58c0185
@ -1470,6 +1470,16 @@ function initProcessDesc() {
|
|||||||
var b='';
|
var b='';
|
||||||
for(var i = 1; i <= length; i++) {
|
for(var i = 1; i <= length; i++) {
|
||||||
var obj = processDesc[i];
|
var obj = processDesc[i];
|
||||||
|
|
||||||
|
if(obj.name=="是否发布"){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(obj.name=="ARIS地址"){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(obj.name=="ARIS流程名称"){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
//判断如果为相关文件/支持文件显示在右侧区域
|
//判断如果为相关文件/支持文件显示在右侧区域
|
||||||
if(obj.name=="相关文件" || obj.name=="支持文件"){
|
if(obj.name=="相关文件" || obj.name=="支持文件"){
|
||||||
b += '<table class="awsui-table">';
|
b += '<table class="awsui-table">';
|
||||||
@ -1487,6 +1497,12 @@ function initProcessDesc() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
|
if(obj.name=="前置流程"){
|
||||||
|
obj.name="上游";
|
||||||
|
}
|
||||||
|
if(obj.name=="后置流程"){
|
||||||
|
obj.name="下游";
|
||||||
|
}
|
||||||
t += '<tr class="borderbottom">';
|
t += '<tr class="borderbottom">';
|
||||||
t += '<td class="tableContent tableleft">' + "【"+obj.name +"】"+ '</td>';
|
t += '<td class="tableContent tableleft">' + "【"+obj.name +"】"+ '</td>';
|
||||||
|
|
||||||
|
|||||||
@ -456,7 +456,6 @@ function openDialog(obj) {
|
|||||||
$("#attribute-table-window2").dialog({
|
$("#attribute-table-window2").dialog({
|
||||||
title: tableName,
|
title: tableName,
|
||||||
draggable: true,
|
draggable: true,
|
||||||
height:50,
|
|
||||||
buttons : [{
|
buttons : [{
|
||||||
text : '确定',
|
text : '确定',
|
||||||
cls : "blue",
|
cls : "blue",
|
||||||
@ -1482,6 +1481,17 @@ function initProcessDesc() {
|
|||||||
var b='';
|
var b='';
|
||||||
for(var i = 1; i <= length; i++) {
|
for(var i = 1; i <= length; i++) {
|
||||||
var obj = processDesc[i];
|
var obj = processDesc[i];
|
||||||
|
|
||||||
|
if(obj.name=="是否发布"){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(obj.name=="ARIS地址"){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(obj.name=="ARIS流程名称"){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
//判断如果为相关文件/支持文件显示在右侧区域
|
//判断如果为相关文件/支持文件显示在右侧区域
|
||||||
if(obj.name=="相关文件" || obj.name=="支持文件"){
|
if(obj.name=="相关文件" || obj.name=="支持文件"){
|
||||||
b += '<table class="awsui-table">';
|
b += '<table class="awsui-table">';
|
||||||
@ -1499,6 +1509,14 @@ function initProcessDesc() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}else{
|
}else{
|
||||||
|
|
||||||
|
if(obj.name=="前置流程"){
|
||||||
|
obj.name="上游";
|
||||||
|
}
|
||||||
|
if(obj.name=="后置流程"){
|
||||||
|
obj.name="下游";
|
||||||
|
}
|
||||||
|
|
||||||
t += '<tr class="borderbottom">';
|
t += '<tr class="borderbottom">';
|
||||||
t += '<td class="tableContent tableleft">' + "【"+obj.name +"】"+ '</td>';
|
t += '<td class="tableContent tableleft">' + "【"+obj.name +"】"+ '</td>';
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user