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
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags"%>
<div class="table-header">业支-明细数据
<div id="time_div" style="top: -6px;float: right;height: 0px;position: relative;">
<button class="btn-sm btn btn-warning btn-sm btn-group btn-group-cog" onclick="exportAppData();">导出</button>
</div>
</div>
<table class="table table-hover table-striped">
<thead>
<tr>
<th width="5%">省份</th>
<th width="8.8%">受理号码</th>
<th width="8.8%">客户级别</th>
<th width="8.8%">受理渠道</th>
<th width="8.8%">受理时间</th>
<th width="8.8%">服务请求分类</th>
<th width="8.8%">满意度</th>
<th width="8.8%">投诉工单描述</th>
<th width="8.8%">责任原因</th>
<th width="8.8%">归档时间</th>
<th width="20%">工单环节处理意见</th>
</tr>
</thead>
<tbody>
<c:forEach items="${DataList.content}" var="appData">
<tr>
<td> ${appData.provName}</td>
<td>${appData.mobile} </td>
<td>${appData.gradle}</td>
<td>${appData.channel}</td>
<td>${appData.processingTime}</td>
<td>${appData.serviceRequest}</td>
<td>${appData.satisfaction}</td>
<td>${appData.descr}</td>
<td>${appData.reson}</td>
<td>${appData.filingTime}</td>
<td>${appData.suggestion}</td>
</tr>
</c:forEach>
</tbody>
</table>
<tags:paging page="${DataList}" paginationSize="${pageSize}" />