75 lines
2.2 KiB
HTML
75 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>流程管理门户-流程地图</title>
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/jquery.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="../commons/css/awsui.css"/>
|
|
<link rel="stylesheet" href="../apps/com.actionsoft.apps.coe.pal.publisher/css/publish.client.xpages.css">
|
|
<style type="text/css">
|
|
.right-bottom {
|
|
display: inline-block;
|
|
width: 100%;
|
|
margin: 20px 10px;
|
|
}
|
|
|
|
.pic-style {
|
|
width: 45%;
|
|
background: #F8F8F8;
|
|
border-radius: 6px;
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
color: #33A382;
|
|
display: inline-block;
|
|
float: left;
|
|
height: 230px;
|
|
margin: 0px 2.5%;
|
|
}
|
|
/* .pic-style div img {
|
|
width : 70%;
|
|
} */
|
|
</style>
|
|
<script type="text/javascript" src="../commons/js/awsui.js"></script>
|
|
<script type="text/javascript" src="../apps/com.actionsoft.apps.coe.pal.publisher/js/publish.xpages.general.js"></script>
|
|
<script type="text/javascript">
|
|
var sid = "<#sid>";
|
|
var uid = "<#uid>";
|
|
var wsId = "<#wsId>";
|
|
var orgId = "<#orgId>";
|
|
var deptData = <#deptData>;
|
|
var processData = <#processData>;
|
|
$(function() {
|
|
var wsPart = '';
|
|
for(var i = 0; i < processData.length; i++) {
|
|
wsPart += '<p>' + processData[i].name + '</p>';
|
|
}
|
|
$('#wsPart').append(wsPart);
|
|
var deptPart = '';
|
|
for(var i = 0; i < deptData.length; i++) {
|
|
deptPart += '<p>' + deptData[i].name + '</p>';
|
|
}
|
|
$('#deptPart').append(deptPart);
|
|
})
|
|
|
|
function openDetail(type) {
|
|
window.open("./w?cmd=com.actionsoft.apps.coe.pal.publisher_client_sso_processmap_page&sid=" + sid + "&type=" + type + "&wsId=" + wsId + "&orgId=" + orgId, "_blank");
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
<body style="background-color: #FFF;color:rgb(96,96,96)">
|
|
<div class="right-bottom">
|
|
<div id="wsPart" class="pic-style" onclick="openDetail('ws')">
|
|
<div>
|
|
<img src="../apps/com.actionsoft.apps.coe.pal.publisher/img/12.png" alt="" />
|
|
</div>
|
|
</div>
|
|
<div id="deptPart" class="pic-style" onclick="openDetail('org')">
|
|
<div>
|
|
<img src="../apps/com.actionsoft.apps.coe.pal.publisher/img/13.png" alt="" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|