组织架构流程阅览

This commit is contained in:
zhal 2022-07-21 19:13:34 +08:00
parent 8482a4f8e8
commit 8f77654e1c
2 changed files with 8 additions and 13 deletions

View File

@ -532,7 +532,7 @@
<!--HTML5设计器核心js--> <!--HTML5设计器核心js-->
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/collaboration.js'></script> <script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/collaboration.js'></script>
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.plugs.js'></script> <script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.plugs.js'></script>
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.core.js'></script> <script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.core.framework.js'></script>
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.methods.js'></script> <script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.methods.js'></script>
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.events.js'></script> <script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.events.js'></script>
<script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.ui.js'></script> <script type='text/javascript' charset='UTF-8' src='../apps/com.actionsoft.apps.coe.pal/lib/designer/scripts/diagraming/designer.ui.js'></script>
@ -566,6 +566,8 @@
cursor: pointer; cursor: pointer;
} }
#canvas_container{ #canvas_container{
width: 100%;
height: 100% !important;
padding:0px; padding:0px;
} }
.awsui-message-page .content{ .awsui-message-page .content{
@ -575,6 +577,7 @@
top: 10%; top: 10%;
text-align: center; text-align: center;
} }
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
if (navigator.userAgent.toLowerCase().match(/chrome/) != null) { if (navigator.userAgent.toLowerCase().match(/chrome/) != null) {
@ -716,7 +719,7 @@
.newadd_body{ margin: 0;color: #333333; text-align: left;background-color: #f1f5f7;} .newadd_body{ margin: 0;color: #333333; text-align: left;background-color: #f1f5f7;}
.newadd_title{font-size: 18px;font-weight: bold; margin-bottom:20px;display: block } .newadd_title{font-size: 18px;font-weight: bold; margin-bottom:20px;display: block }
.newadd_card { .newadd_card {
float: left; /* float: left;*/
width:100%; width:100%;
height:100%; height:100%;
background-color: #fff; background-color: #fff;

View File

@ -1877,21 +1877,13 @@ function initShapeAttribute(obj) {
for(var sortIndex = 0; sortIndex < sortNumShapeArr.length; sortIndex++) { for(var sortIndex = 0; sortIndex < sortNumShapeArr.length; sortIndex++) {
var temp = sortNumShapeArr[sortIndex]; var temp = sortNumShapeArr[sortIndex];
var shape = elements[temp.id]; var shape = elements[temp.id];
if(shape.title=="线上审批" || shape.title=="线下审批" || shape.title=="系统任务" ||shape.title=="人工任务") {
if(obj==shape.id){ if(obj==shape.id){
continue; continue;
} }
/*var no = "";
var array=shape.attributesJsonArray;
for (var i = 0; i < array.length; i++) {
var id = array[i].id;
if (id == "activity_number") {
var numberValue = array[i].value;
if (numberValue != "") {
no = numberValue;
}
}
}*/
document.getElementById("box"+shape.id).style.display="none"; document.getElementById("box"+shape.id).style.display="none";
}
//document.getElementById("span"+shape.id).innerHTML=no+"."+shape.text; //document.getElementById("span"+shape.id).innerHTML=no+"."+shape.text;
} }
} }