12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/12/8
- Time: 9:54
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Title</title>
- <%@ include file="/pages/common/head.jsp"%>
- <style type="text/css">
- h1 {
- text-align: center;
- margin-top: 200px;
- }
- #main table tr td a{
- text-decoration: none;
- }
- </style>
- </head>
- <body>
- <div id="header">
- <img class="logo_img" alt="" src="" >
- <span class="wel_word">我的订单</span>
- <%--静态包含,登录成功后的菜单--%>
- <%@ include file="/pages/common/login_success_menu.jsp"%>
- </div>
- <div id="main">
- <table>
- <tr>
- <td>日期</td>
- <td>金额</td>
- <td>状态</td>
- <%-- <td>详情</td>--%>
- <td>订单号</td>
- </tr>
- <tr>
- <%-- <td>2021.04.23</td>--%>
- <td>
- <%-- <c:if test="${not empty sessionScope.orderId}">--%>
- <%-- ${sessionScope.year}.${sessionScope.month}.${sessionScope.day}--%>
- <%-- </c:if>--%>
- </td>
- <%-- <td>90.00</td>--%>
- <td>
- <%-- <c:choose>--%>
- <%-- <c:when test="${empty sessionScope.orderId}">--%>
- <%-- 0.00--%>
- <%-- </c:when>--%>
- <%-- <c:when test="${not empty sessionScope.cart.totalPrice}">--%>
- <%-- ${sessionScope.cart.totalPrice}--%>
- <%-- </c:when>--%>
- <%--<%– <c:when test="${not empty sessionScope.orderId}">–%>--%>
- <%--<%– ${sessionScope.cart.totalPrice}–%>--%>
- <%--<%– </c:when>–%>--%>
- <%-- </c:choose>--%>
- <%-- <c:if test="${empty sessionScope.orderId}">--%>
- <%-- </c:if>--%>
- <%-- <c:if test="${not empty sessionScope.cart.totalPrice}">--%>
- <%-- ${sessionScope.cart.totalPrice}--%>
- <%-- </c:if>--%>
- </td>
- <td>
- </td>
- <td>
- <%-- <c:if test="${not empty sessionScope.orderId}">--%>
- <%-- ${sessionScope.orderId}--%>
- <%-- </c:if>--%>
- </td>
- </tr>
- </table>
- </div>
- <%@include file="/pages/common/footer.jsp"%>
- </body>
- </html>
|