<%@ 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="20%">日期</th>
        <th width="20%">投诉编码</th>
        <th width="30%">投诉现象描述</th>
        <th width="10%">投诉量</th>

    </tr>
    </thead>
    <tbody>

    <c:forEach items="${DataList.content}" var="appData">
        <tr>
            <td>${appData.provName}</td>
            <td>${appData.varMonth} </td>
            <td>${appData.code}</td>
            <td>${appData.descr}</td>
            <td>${appData.cnt}</td>
        </tr>
    </c:forEach>
    </tbody>
</table>
<tags:paging page="${DataList}" paginationSize="${pageSize}" />