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
<%@ 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="10%">选择</th>
<th width="10%">省份</th>
<th width="10%">日期</th>
<th width="10%">省份编码</th>
<th width="10%">数据是否一致</th>
<th width="10%">投诉等级</th>
<th width="10%">投诉名称</th>
<th width="20%">投诉详情</th>
<th width="10%">回复时间</th>
</tr>
</thead>
<tbody>
<c:forEach items="${DataList.content}" var="appData">
<tr>
<td><input type="checkbox" name="id" id="id" value="${appData.id}" /></td>
<td> ${appData.provName}</td>
<td>${appData.month} </td>
<td>${appData.provCode}</td>
<td>${appData.dataCharacter}</td>
<td>${appData.rank}</td>
<td>${appData.complaintName}</td>
<td>${appData.complaintTopDetails}</td>
<td>${appData.replyDate}</td>
</tr>
</c:forEach>
</tbody>
</table>
<tags:paging page="${DataList}" paginationSize="${pageSize}" />