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

27 lines
1015 B
Plaintext
Raw Normal View History

2024-12-21 01:58:50 +08:00
<%@ page contentType="text/html; charset=UTF-8" language="java" %>
<!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 01:58:50 +08:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2024-12-21 18:06:18 +08:00
<title>更新电脑信息</title>
2024-12-21 01:58:50 +08:00
</head>
<body>
2024-12-21 18:06:18 +08:00
<h1>更新电脑信息</h1>
2024-12-21 01:58:50 +08:00
<form action="/editComputer" method="post">
<input type="hidden" name="id" value="${computer.id}">
2024-12-21 18:06:18 +08:00
<label for="name">名称: </label><br>
2024-12-21 01:58:50 +08:00
<input type="text" id="name" name="name" value="${computer.name}"><br><br>
2024-12-21 18:06:18 +08:00
<label for="price">价格: </label><br>
2024-12-21 01:58:50 +08:00
<input type="text" id="price" name="price" value="${computer.price}"><br><br>
2024-12-21 18:06:18 +08:00
<label for="stock">库存: </label><br>
2024-12-21 01:58:50 +08:00
<input type="text" id="stock" name="stock" value="${computer.stock}"><br><br>
2024-12-21 18:06:18 +08:00
<input type="submit" value="提交修改">
2024-12-21 01:58:50 +08:00
</form>
<br>
2024-12-21 18:06:18 +08:00
<a href="/computerList">返回电脑列表</a>
2024-12-21 01:58:50 +08:00
</body>
</html>