pay.jsp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/12/7
  5. Time: 13:40
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %>
  9. <html>
  10. <head>
  11. <title>结算页面</title>
  12. <%@ include file="/pages/common/head.jsp"%>
  13. <style>
  14. h1{
  15. text-align: center;
  16. color: aqua;
  17. font-size: 50px;
  18. margin-top: 50px;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="header">
  24. <img class="logo_img" alt="" src="" >
  25. <%-- ../../static/img/logo.gif--%>
  26. <span class="wel_word">结算</span>
  27. <%--静态包含,登录成功后的菜单--%>
  28. <%@ include file="/pages/common/login_success_menu.jsp"%>
  29. </div>
  30. <div id="main">
  31. <h1>结算成功</h1>
  32. </div>
  33. <%-- <h1>订单号为:${sessionScope.orderId}</h1>--%>
  34. <%@include file="/pages/common/footer.jsp"%>
  35. </body>
  36. </html>