tSSmsDetailList.jsp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <t:base type="jquery,tools"></t:base>
  7. <!-- bootstrap & fontawesome -->
  8. <link rel="stylesheet" href="plug-in/ace/css/bootstrap.css" />
  9. <link rel="stylesheet" href="plug-in/ace/css/font-awesome.css" />
  10. <link rel="stylesheet" type="text/css" href="plug-in/accordion/css/accordion.css">
  11. <script src="plug-in/ace/js/jquery.js"></script>
  12. <script src="plug-in/ace/js/bootstrap.js"></script>
  13. </head>
  14. <body style="overflow-y: hidden" scroll="no">
  15. <t:formvalid formid="formobj" layout="table" dialog="true">
  16. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable table table-hover">
  17. <thead>
  18. <tr>
  19. <th>内容</th>
  20. <th>发送时间</th>
  21. </tr>
  22. </thead>
  23. <tbody><%--<th>系统信息</th>--%>
  24. <c:if test="${smsList != null || fn:length(smsList) != 0}">
  25. <c:forEach var="item" items="${smsList}">
  26. <tr>
  27. <td class="value"><span>${item.esContent}</span></td>
  28. <td class="value"><span>${item.esSendtime}</span></td>
  29. </tr>
  30. </c:forEach>
  31. </c:if>
  32. <c:if test="${smsList == null || fn:length(smsList) == 0}">
  33. <tr>
  34. <td class="value"><span>暂无系统信息!</span></td>
  35. <td class="value"><span>暂无系统信息!</span></td>
  36. </tr>
  37. </c:if>
  38. </tbody>
  39. </table>
  40. </t:formvalid>
  41. </body>
  42. </html>