46 lines
2.0 KiB
Plaintext
46 lines
2.0 KiB
Plaintext
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
<%@ include file="/commons/taglibs.jsp"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
|
|
%>
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<%@ include file="/commons/meta.jsp"%>
|
|
<base href="<%=basePath%>">
|
|
<title>效率分析</title>
|
|
<link href="${ctx}/resource/js/plugins/loadmask/jquery.loadmask.css" rel="stylesheet" type="text/css" />
|
|
<script type='text/javascript' src='${ctx}/resource/js/plugins/loadmask/jquery.loadmask.js'></script>
|
|
<script>
|
|
function iframeChange(url){
|
|
$("#frmrightChild").attr("src",url);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="main-container" id="main-container">
|
|
<div class="panel-heading" style="color: #FFF;background-color: #428BCA;border-color: #428BCA;">
|
|
<span style="font-size: 14px;">效率统计</span>
|
|
</div>
|
|
<div class="row" style="margin-right:0;">
|
|
<div class="col-xs-12">
|
|
<div class="tabbable">
|
|
<ul class="nav nav-tabs padding-12 tab-color-blue background-blue" id="myTab3">
|
|
<li class="active">
|
|
<a id="UserContract" onclick="iframeChange('${ctx}/workflow/proDefEfficiency.do')" data-toggle="tab" href="" target="frmrightChild" class="current">流程效率统计</a>
|
|
</li>
|
|
<li>
|
|
<a id="UserEvent" onclick="iframeChange('${ctx}/workflow/proOrgEfficiency.do')" href="" data-toggle="tab" target="frmrightChild">组织效率统计</a>
|
|
</li>
|
|
</ul>
|
|
<div class="tab-content">
|
|
<IFRAME src="${ctx}/workflow/proDefEfficiency.do" style="width: 100%; height: 1000px;" scrolling="no"
|
|
frameBorder="0" id="frmrightChild" name="frmrightChild" onload="iframeHeight('frmrightChild')" allowTransparency="true"></IFRAME>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |