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.
20 lines
524 B
20 lines
524 B
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<html>
|
|
<head>
|
|
<title>添加数据字典</title>
|
|
</head>
|
|
<body>
|
|
<h2>新增字典项</h2>
|
|
<form action="submitDataDict" method="post">
|
|
键名: <input type="text" name="key" required><br>
|
|
键值: <input type="text" name="value" required><br>
|
|
类型:
|
|
<select name="type">
|
|
<option value="category">分类</option>
|
|
<option value="status">状态</option>
|
|
<option value="config">配置</option>
|
|
</select><br>
|
|
<input type="submit" value="提交">
|
|
</form>
|
|
</body>
|
|
</html> |