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/cart.jsp

51 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-12-21 13:54:25 +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 13:54:25 +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 16:41:21 +08:00
<a href="/">主页</a>
2024-12-21 17:11:50 +08:00
<c:if test="${not empty computers}">
<table border="1">
<thead>
2024-12-21 13:54:25 +08:00
<tr>
2024-12-21 17:11:50 +08:00
<th>ID</th>
<th>Name</th>
<th>Price</th>
<th>Actions</th>
2024-12-21 13:54:25 +08:00
</tr>
2024-12-21 17:11:50 +08:00
</thead>
<tbody>
<c:forEach var="computer" items="${computers}">
<tr>
<td>${computer.id}</td>
<td>${computer.name}</td>
<td>${computer.price}</td>
<td>
<a href="/cart?action=remove&id=${computer.id}">移出</a>
</td>
</tr>
</c:forEach>
</tbody>
</table>
<hr>
</c:if>
<c:if test="${not empty computers}">
<a href="/orders?action=add">
<button>一键下单</button>
</a>
</c:if>
<c:if test="${empty computers}">
<p>购物车为空,暂无商品可下单。</p>
</c:if>
2024-12-21 16:41:21 +08:00
<br>
2024-12-21 13:54:25 +08:00
<br/>
<br>
</body>
2024-12-21 17:11:50 +08:00
</html>