-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcategory-add.html
97 lines (91 loc) · 3.53 KB
/
category-add.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! -->
<title>添加分类</title>
<!-- Bootstrap -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="lib/Validform_v5.3.2/css/style.css"/>
<!-- HTML5 shim 和 Respond.js 是为了让 IE8 支持 HTML5 元素和媒体查询(media queries)功能 -->
<!-- 警告:通过 file:// 协议(就是直接将 html 页面拖拽到浏览器中)访问页面时 Respond.js 不起作用 -->
<!--[if lt IE 9]>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html5shiv.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dest/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- header -->
<header></header>
<div class="main">
<div class="left-side"></div>
<div class="right-content">
<!-- 表格 -->
<div class="panel panel-primary">
<div class="panel-heading">添加分类</div>
<div class="panel-body">
<!-- 表单 -->
<form class="form-horizontal demoform" method="post" action="/category/add">
<div class="form-group">
<label for="" class="col-sm-2 control-label">
分类名称
<span class="text-danger">*</span>
</label>
<div class="col-sm-10">
<input type="text" name="name" datatype="*2-16" errormsg="分类名至少2个字符,最多16个字符!" class="form-control" placeholder="请输入分类名称">
</div>
</div>
<div class="form-group">
<label for="" class="col-sm-2 control-label">
父级分类
<span class="text-danger">*</span>
</label>
<div class="col-sm-10">
<select id="parent" name="parent_id" class="form-control">
<option value="0">无</option>
</select>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" id="addBtn" class="btn btn-primary">添加分类</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- jQuery (Bootstrap 的所有 JavaScript 插件都依赖 jQuery,所以必须放在前边) -->
<script src="lib/jQuery/jquery-1.12.4.min.js"></script>
<!-- 加载 Bootstrap 的所有 JavaScript 插件。你也可以根据需要只加载单个插件。 -->
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="js/load.js"></script>
<script src="lib/Validform_v5.3.2/Validform_v5.3.2_min.js" type="text/javascript" charset="utf-8"></script>
<script src="lib/layer/layer.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
// 获取分类
$.getJSON("/category/list",function(res){
res.data.forEach(function(item,index){
$("#parent").append(`<option value="${item.id}">${item.name}</option>`);
})
})
// 正则判断
$(".demoform").Validform({
tiptype:4,
ajaxPost:true,
callback:function(res){
if(res.status){
layer.msg(res.msg);
}else{
layer.msg(res.msg);
}
}
})
</script>
</body>
</html>