-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.html
37 lines (37 loc) · 1.01 KB
/
edit.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Edit</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div id="div_container">
<div id="div_fruit_list">
<p id="top-title">编辑水果信息</p>
<form th:action="@{/update.do}" method="post" th:object="${fruit}">
<input type="hidden" name="id" th:value="*{id}">
<table id="t_fruit">
<tr>
<th class="w25">名称:</th>
<td><input type="text" name="name" th:value="*{name}"></td>
</tr>
<tr>
<th class="w25">价格:</th>
<td><input type="text" name="price" th:value="*{price}"></td>
</tr>
<tr>
<th class="w25">库存:</th>
<td><input type="text" name="num" th:value="*{num}"></td>
</tr>
<tr>
<th colspan="2">
<input type="submit" value="修改">
</th>
</tr>
</table>
</form>
</div>
</div>
</body>
</html>