1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>结算页面</title>
- <%--静态包含:base标签,css样式,js脚本--%>
- <%@ include file="/pages/common/head.jsp"%>
- <style type="text/css">
- h1 {
- text-align: center;
- margin-top: 200px;
- }
- #a{
- /*text-decoration: none;*/
- text-align: center;
- margin-top: 10px;
- color: red;
- }
- #a a{
- text-decoration: none;
- }
- #a a strong{
- color: red;
- font-size: 30px;
- }
- </style>
- </head>
- <body>
-
- <div id="header">
- <img class="logo_img" alt="" src="" >
- <%-- ../../static/img/logo.gif--%>
- <span class="wel_word">结算</span>
- <%--静态包含,登录成功后的菜单--%>
- <%@ include file="/pages/common/login_success_menu.jsp"%>
- </div>
- <div id="main">
- <%-- <h1>你的订单已结算,订单号为:${sessionScope.orderId}</h1> 2021.12.7-11:28--%>
- <h1>你的订单已提交,订单号为:${sessionScope.orderId}</h1>
- <%-- <span class="cart_span"><a href="orderServlet?action=createOrder">去结账</a></span>--%>
- <%-- 跳往结算页面 2021.12.7-11:28--%>
- <%-- <a href="pages/order/order.jsp">我的订单</a>--%>
- <%-- <h4 id="a"><a href="orderServlet?action=payOrder"><strong>前往结算</strong></a></h4>--%>
- <%-- <h4 id="a"><a href="orderServlet?action=payOrder"><strong>前往结算</strong></a></h4>--%>
- </div>
- <%--静态包含:页脚--%>
- <%@include file="/pages/common/footer.jsp"%>
- </body>
- </html>
|