This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
2024-12-21 17:09:41 +08:00
|
|
|
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
|
|
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-12-21 18:06:18 +08:00
|
|
|
<script src="https://www.liyansheng.top/cdn/watermark.js"></script>
|
2024-12-21 17:09:41 +08:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>我的订单</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>我的订单</h1>
|
2024-12-21 17:19:36 +08:00
|
|
|
|
|
|
|
<div style="color: red;">
|
|
|
|
<p>${requestScope.msg}</p>
|
|
|
|
</div>
|
2024-12-21 17:09:41 +08:00
|
|
|
<table border="1">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>订单编号</th>
|
|
|
|
<th>用户ID</th>
|
|
|
|
<th>订单日期</th>
|
|
|
|
<th>总金额</th>
|
|
|
|
<th>地址</th>
|
|
|
|
<th>商品信息</th>
|
2024-12-22 00:55:44 +08:00
|
|
|
<th>状态</th>
|
2024-12-21 17:09:41 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<c:forEach var="order" items="${Orders}">
|
|
|
|
<tr>
|
|
|
|
<td>${order.id}</td>
|
|
|
|
<td>${order.userId}</td>
|
|
|
|
<td>${order.orderDate}</td>
|
|
|
|
<td>${order.totalPrice}</td>
|
|
|
|
<td>${order.address}</td>
|
|
|
|
<td>${order.remark}</td>
|
2024-12-22 00:55:44 +08:00
|
|
|
<td>${order.status}</td>
|
2024-12-21 17:09:41 +08:00
|
|
|
</tr>
|
|
|
|
</c:forEach>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<br/>
|
|
|
|
<br>
|
|
|
|
<a href="/">主页</a>
|
|
|
|
</body>
|
|
|
|
</html>
|