me_record.jsp 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
  4. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
  5. <%
  6. String path = request.getContextPath();
  7. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort() + path+"/";
  8. request.setAttribute("contextPath", basePath);
  9. String redirectUrl= request.getParameter("redirectUrl");
  10. request.setAttribute("redirectUrl", redirectUrl);
  11. %>
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta charset="UTF-8">
  16. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  17. <meta name="apple-mobile-web-app-capable" content="yes">
  18. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  19. <meta name="format-detection" content="telephone=no">
  20. <title>邀请记录</title>
  21. <script src="${contextPath }app/lib/flexible.js"></script>
  22. <link rel="stylesheet" href="${contextPath }app/lib/flexible.css">
  23. <link rel="stylesheet" href="${contextPath }app/css/basem.css">
  24. <link rel="stylesheet" href="${contextPath }app/css/logome.css">
  25. </head>
  26. <body>
  27. <div class="titbox blubg">
  28. <a class="titreturn left" href="${contextPath }web/meWebCtl/me.cs"><img src="${contextPath }app/img/fanhui16@2x.png" alt=""></a>
  29. <h1>邀请记录</h1>
  30. </div>
  31. <div class="whbg top50">
  32. <div class="safe">
  33. <ul>
  34. <c:forEach items="${lists}" var="record">
  35. <li class="merecli">
  36. <c:if test="${record.name!=null}">
  37. <p class="left">${record.name}</p>
  38. </c:if>
  39. <c:if test="${record.name==null}">
  40. <p class="left"><a href="tel:${record.phone}">${record.phone}</a></p>
  41. </c:if>
  42. <p class="right metime">${record.inviteDate}</p>
  43. </li>
  44. </c:forEach>
  45. </ul>
  46. </div>
  47. </div>
  48. </body>
  49. </html>