flowlog.jsp
2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<%@ 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>