2de33e170f39da1aa8b658c73775818ce9e1aff1.svn-base
2.79 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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
<title>受理申请管理</title>
<meta name="decorator" content="default"/>
<script type="text/javascript">
$(document).ready(function() {
});
</script>
</head>
<body>
<%-- <form:form id="searchForm" modelAttribute="regBusSlsq" action="${ctx}/reg/bus/regBusSlsq/queryScheduleData" method="post" class="breadcrumb form-search">
<ul class="ul-form">
<br>
<li><label>业务编号:</label>
<form:input path="ywh"htmlEscape="false" maxlength="20" class="input-medium"/>
</li>
<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
<li class="clearfix"></li>
</ul>
<br><br>
<ul class="ul-form1" style="height:300px">
<li><label>业务小类:</label>
<form:input path="djxl" style="font-family:黑体;font-size:30px;height:30px" htmlEscape="false" maxlength="20" class="input-medium"/>
</li>
<br>
<li class="clearfix"></li>
<li><label>当前办理环节:</label>
<form:input path="taskdefkey" style="font-family:黑体;font-size:30px;height:30px" value="${fns:getDictLabel(regBusSlsq.taskdefkey, 'reg_bus_proc_taskid', '')}" htmlEscape="false" maxlength="20" class="input-medium"/>
</li>
</ul>
</form:form> --%>
<form:form id="searchForm" modelAttribute="regBusSlsq" action="${ctx}/reg/bus/regBusSlsq/queryScheduleData" method="post" class="breadcrumb form-search">
<ul class="ul-form">
<li><label>业务编号:</label>
<form:input path="ywh" htmlEscape="false" maxlength="20" class="input-medium"/>
</li>
<li class="btns"><input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/></li>
<li class="clearfix"></li>
</ul>
</form:form>
<sys:message content="${message}"/>
<table id="contentTable" class="table table-striped table-bordered table-condensed">
<thead>
<tr>
<th>业务编号</th>
<th>登记小类</th>
<th>申请人姓名</th>
<!--<th>受理人员</th>
<th>受理提交时间</th>
<th>当前环节开始时间</th> -->
<th>当前环节</th>
</tr>
</thead>
<tbody>
<c:if test="${sfFlag eq '1'}">
<tr>
<td>
${regBusSlsq.ywh}
</td>
<td>
${fns:getDictLabel(regBusSlsq.djxl, 'reg_bus_djxl', '')}
</td>
<td>
${regBusSlsq.tzrxm}
</td>
<%--<td>
${regBusSlsq.updateBy.name}
</td>
<td>
<fmt:formatDate value="${regBusSlsq.slsj}" pattern="yyyy-MM-dd HH:mm:ss"/>
</td>
<td>
<fmt:formatDate value="${regBusSlsq.jssj}" pattern="yyyy-MM-dd HH:mm:ss"/>
</td> --%>
<td>
${fns:getDictLabel(regBusSlsq.taskdefkey, 'reg_bus_proc_taskid', '')}
</td>
</tr>
</c:if>
</tbody>
</table>
</body>
</html>