123456789101112131415161718192021222324 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/6/20
- Time: 22:02
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <div>
- <span>欢迎<span class="um_span">${sessionScope.user.username}</span>光临</span>
- <%-- <c:when test="${empty sessionScope.orderId}">--%>
- <%-- <a href="pages/order/order1.jsp">我的订单</a>--%>
- <%-- </c:when>--%>
- <%-- <c:otherwise>--%>
- <%-- <a href="pages/order/order.jsp">我的订单</a>--%>
- <%-- </c:otherwise>--%>
- <%-- <c:if test="">--%>
- <%-- </c:if>--%>
- <%-- <c:if test="${not empty sessionScope.orderId}">--%>
- <%-- </c:if>--%>
- <a href="pages/order/order.jsp">我的订单</a>
- <a href="userServlet?action=logout">注销</a>  
- <a href="index.jsp">返回</a>
- </div>
|