<%@ 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><fmt:formatDate value="${appData.processingTime}" type="both" pattern="yyyy-MM-dd HH:mm:ss" /></td> <%--<td>${appData.processingTime}</td>--%> <td>${appData.serviceRequest}</td> <td>${appData.satisfaction}</td> <td>${appData.descr}</td> <td>${appData.reson}</td> <td><fmt:formatDate value="${appData.filingTime}" type="both" pattern="yyyy-MM-dd HH:mm:ss" /></td> <%--<td>${appData.filingTime}</td>--%> <td>${appData.suggestion}</td> </tr> </c:forEach> </tbody> </table> <tags:paging page="${DataList}" paginationSize="${pageSize}" />