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.

55 lines
1.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%--
Created by IntelliJ IDEA.
User: HP
Date: 2026/5/8
Time: 16:33
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加数据字典</title>
</head>
<body>
<h3>添加数据字典</h3>
<!-- 表单action要和Controller里的addDict方法路径匹配 -->
<form action="${pageContext.request.contextPath}/dict/addDict" method="post">
<table>
<tr>
<td>字典ID</td>
<td><input type="number" name="dictId" required></td>
</tr>
<tr>
<td>字典类型:</td>
<td><input type="text" name="dictType" required></td>
</tr>
<tr>
<td>字典编码:</td>
<td><input type="text" name="dictCode" required></td>
</tr>
<tr>
<td>字典名称:</td>
<td><input type="text" name="dictName" required></td>
</tr>
<tr>
<td>排序序号:</td>
<td><input type="number" name="dictSort" required></td>
</tr>
<tr>
<td>是否有效:</td>
<td>
<input type="radio" name="isValid" value="Y" checked>有效
<input type="radio" name="isValid" value="N">无效
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="提交">
<input type="reset" value="重置">
</td>
</tr>
</table>
</form>
</body>
</html>