You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
<%--
|
|
Created by IntelliJ IDEA.
|
|
User: Administrator
|
|
Date: 2026/5/10
|
|
Time: 17:49
|
|
To change this template use File | Settings | File Templates.
|
|
--%>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>花卉商品录入</title>
|
|
</head>
|
|
<body>
|
|
<h2>花卉商品录入</h2>
|
|
<form action="${pageContext.request.contextPath}/flower/add"
|
|
method="post">
|
|
<p>
|
|
花卉编号:<input type="text" name="id">
|
|
</p >
|
|
<p>
|
|
花卉名称:<input type="text" name="flowerName">
|
|
</p >
|
|
<p>
|
|
是否热门:
|
|
<select name="isHot">
|
|
<option value="是">是</option>
|
|
<option value="否">否</option>
|
|
</select>
|
|
</p >
|
|
<p>
|
|
市场价格:<input type="text" name="marketPrice">
|
|
</p >
|
|
<p>
|
|
销售价格:<input type="text" name="sellPrice">
|
|
</p >
|
|
<p>
|
|
花卉图片:<input type="file" name="picFile">
|
|
</p >
|
|
<p>
|
|
分类名称:<input type="text" name="category">
|
|
</p >
|
|
<p>商品描述:<br>
|
|
<textarea name="description" rows="5" cols="30"></textarea>
|
|
</p >
|
|
<p>
|
|
上架日期:<input type="date" name="createDate">
|
|
</p >
|
|
|
|
<input type="reset" value="重置">
|
|
<input type="submit" value="添加">
|
|
</form>
|
|
</body>
|
|
</html> |