123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort() + path+"/";
- request.setAttribute("contextPath", basePath);
-
- String redirectUrl= request.getParameter("redirectUrl");
- request.setAttribute("redirectUrl", redirectUrl);
- %>
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <meta name="format-detection" content="telephone=no">
- <title>邀请记录</title>
- <script src="${contextPath }app/lib/flexible.js"></script>
- <link rel="stylesheet" href="${contextPath }app/lib/flexible.css">
- <link rel="stylesheet" href="${contextPath }app/css/basem.css">
- <link rel="stylesheet" href="${contextPath }app/css/logome.css">
- </head>
- <body>
- <div class="titbox blubg">
- <a class="titreturn left" href="${contextPath }web/meWebCtl/me.cs"><img src="${contextPath }app/img/fanhui16@2x.png" alt=""></a>
- <h1>邀请记录</h1>
- </div>
- <div class="whbg top50">
- <div class="safe">
- <ul>
- <c:forEach items="${lists}" var="record">
- <li class="merecli">
- <c:if test="${record.name!=null}">
- <p class="left">${record.name}</p>
- </c:if>
- <c:if test="${record.name==null}">
- <p class="left"><a href="tel:${record.phone}">${record.phone}</a></p>
- </c:if>
- <p class="right metime">${record.inviteDate}</p>
- </li>
- </c:forEach>
- </ul>
- </div>
- </div>
- </body>
- </html>
|