This repository has been archived on 2025-01-14. You can view files and clone it, but cannot push or open issues/pull-requests.
computer-web/src/main/webapp/myOrder.jsp

45 lines
1.3 KiB
Plaintext
Raw Normal View History

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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的订单</title>
</head>
<body>
<h1>我的订单</h1>
<table border="1">
<thead>
<tr>
<th>订单编号</th>
<th>用户ID</th>
<th>订单日期</th>
<th>总金额</th>
<th>地址</th>
<th>商品信息</th>
<th>操作</th>
</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>
<td>
<a href="/orders?action=delete&id=${order.id}">删除</a>
</td>
</tr>
</c:forEach>
</tbody>
</table>
<br/>
<br>
<a href="/">主页</a>
</body>
</html>