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-22 22:06:28 +08:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
background-color: #f0f8ff; /* 天蓝色背景 */
|
|
|
|
color: #333; /* 深色文本 */
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: #4682b4; /* 天蓝色标题 */
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
background-color: #ffffff;
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
width: 300px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #4682b4; /* 天蓝色标签 */
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="text"] {
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px;
|
|
|
|
margin: 8px 0;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="submit"] {
|
|
|
|
background-color: #4682b4; /* 天蓝色按钮 */
|
|
|
|
color: white;
|
|
|
|
padding: 10px;
|
|
|
|
border: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
width: 100%;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type="submit"]:hover {
|
|
|
|
background-color: #5a9bd3; /* 按钮悬停时颜色 */
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
margin-top: 10px;
|
|
|
|
color: #4682b4; /* 天蓝色链接 */
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
</style>
|
2024-12-21 01:58:50 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-12-22 22:06:28 +08:00
|
|
|
<div>
|
|
|
|
<h1>更新电脑信息</h1>
|
|
|
|
<form action="/computer?action=edit" method="post">
|
|
|
|
<input type="hidden" name="id" value="${computer.id}">
|
|
|
|
<label for="name">名称: </label><br>
|
|
|
|
<input type="text" id="name" name="name" value="${computer.name}"><br><br>
|
|
|
|
<label for="price">价格: </label><br>
|
|
|
|
<input type="text" id="price" name="price" value="${computer.price}"><br><br>
|
|
|
|
<label for="stock">库存: </label><br>
|
|
|
|
<input type="text" id="stock" name="stock" value="${computer.stock}"><br><br>
|
|
|
|
<input type="submit" value="提交修改">
|
|
|
|
</form>
|
|
|
|
<br>
|
|
|
|
<a href="/computer?action=list">返回电脑列表</a>
|
|
|
|
</div>
|
2024-12-21 01:58:50 +08:00
|
|
|
</body>
|
|
|
|
</html>
|