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.
21 lines
789 B
21 lines
789 B
<%@ page contentType="text/html;charset=UTF-8" language="java" pageEncoding="UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>添加材料</title>
|
|
</head>
|
|
<body>
|
|
<h3>材料信息</h3>
|
|
<form action="${pageContext.request.contextPath}/material/newadd" method="post">
|
|
材料编号:<input type="text" name="mid"><br><br>
|
|
材料名称:<input type="text" name="mname"><br><br>
|
|
规格型号:<input type="text" name="spec"><br><br>
|
|
库存数量:<input type="text" name="stockNum"><br><br>
|
|
单位:<input type="text" name="unit"><br><br>
|
|
单价:<input type="text" name="price"><br><br>
|
|
供应商:<input type="text" name="supplier"><br><br>
|
|
<input type="submit" value="添加">
|
|
<input type="reset" value="重置">
|
|
</form>
|
|
</body>
|
|
</html> |