<%@ 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="6.4%">省份</th> <th width="6.4%">日期</th> <th width="6.4%">服务请求</th> <th width="6.4%">第4级</th> <th width="6.4%">第5级</th> <th width="6.4%">第6级</th> <th width="6.4%">第7级</th> <th width="6.4%">第8级</th> <th width="6.4%">部门</th> <th width="6.4%">责任原因</th> <th width="6.4%">是否建单</th> <th width="6.4">投诉量</th> <th width="6.4%">是否属于费用类</th> <th width="6.4%">是否属于4G业务</th> <th width="6.4%">是否属于流量业务</th> </tr> </thead> <tbody> <c:forEach items="${DataList.content}" var="appData"> <tr> <td> ${appData.provName}</td> <td>${appData.varMonth} </td> <td>${appData.class3}</td> <td>${appData.class4}</td> <td>${appData.class5}</td> <td>${appData.class6}</td> <td>${appData.class7}</td> <td>${appData.class8}</td> <td>${appData.dept}</td> <td>${appData.reason}</td> <td>${appData.iscreate}</td> <td>${appData.cnt}</td> <td>${appData.iscost}</td> <td>${appData.is4g}</td> <td>${appData.isflow}</td> </tr> </c:forEach> </tbody> </table> <tags:paging page="${DataList}" paginationSize="${pageSize}" />