flowlog.jsp 2.46 KB
<%@ page language="java" contentType="text/html; charset=utf-8"
	pageEncoding="utf-8"%>
<%
	String flowInstanceId = request.getParameter("flowInstanceId");
%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
<jsp:include page="projectinclude.jsp"></jsp:include>
<script type="text/javascript" src="../../js/projecttask/flowlog.js"></script>
<style type="text/css">
      #flowdetaildata tr{
      cursor: default;
      }
      tr td:last-child:hover{
      cursor:pointer;
      color:#0196ea;
      text-decoration: underline; 
      }
     .layui-layer-content{
       overflow: hidden!important;
     }
     textarea {
	min-width: 460px;
    min-height: 170px;
    max-width: 460px;
    max-height: 170px;
   }
   textarea::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #FFFFFF;
}
 
textarea::-webkit-scrollbar
{
    width: 6px;
}
 
textarea::-webkit-scrollbar-thumb
{
    background-color: #999999;
}
/*滚动条样式*/
.body-div::-webkit-scrollbar {
  width: 4px;
  height: 6px;
}
.body-div::-webkit-scrollbar-thumb {
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.2);
}
.body-div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  border-radius: 0;
  background: rgba(0,0,0,0.1);

}
.body-div{
	width: 100%;
	height: 100%;
}
</style>
</head>
<body style='overflow-x:auto'>
	<div class="body-div">
		<div style="display: none">
			<input id="flowInstanceId" type="hidden" value="<%=flowInstanceId%>" />
		</div>
		<div class="container" style="width: 100%">
		<div id="flowSection" class="container-div" style="position: relative;  /*right:90px;*/">
			<canvas id="myCanvas"></canvas>
			<div id = "title" style="width: auto;height: 25px;background-color: #eee;position: absolute;padding: 3px 8px 26px 9px;
			border-radius: 5px;display: none"></div>
		</div>
		</div>
		<!-- 流程详情 -->
		<div class="container" id="flowdetail" style="margin-top: 20px;width: 96%">
			<table class="striped" id="flowdetaildata" style="width:100%">
				<thead>
					<tr>
						<th width="30%">发送信息</th>
						<th width="8%">操作人</th>
						<th width="8%">操作</th>
						<th width="8%">接收人</th>
						<th width="8%">状态</th>
						<th width="17%">发送时间</th>
						<th width="40%">操作意见</th>
					</tr>
				</thead>
			</table>
		</div>
	</div>
</body>
</html>