1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/12/7
- Time: 13:40
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
- <html>
- <head>
- <title>结算页面</title>
- <%@ include file="/pages/common/head.jsp"%>
- <style>
- h1{
- text-align: center;
- color: aqua;
- font-size: 50px;
- margin-top: 50px;
- }
- </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>结算成功</h1>
- </div>
- <%-- <h1>订单号为:${sessionScope.orderId}</h1>--%>
- <%@include file="/pages/common/footer.jsp"%>
- </body>
- </html>
|