add.html
3.87 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<meta charset="utf-8">
<head th:include="include :: header"></head>
<style>
.time-input {
display: block;
width: 40%;
float: left;
padding-left: 10px;
}
</style>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
<form class="form-horizontal m" id="form-user-add">
<input name="deptId" type="hidden" id="treeId"/>
<div class="form-group">
<label class="col-sm-3 control-label ">用户名称:</label>
<div class="col-sm-8">
<input class="form-control" type="text" id="username" name="username"/>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">用户电话:</label>
<div class="col-sm-8">
<input class="form-control" type="text" name="userPhone" id="userPhone">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">职位类型:</label>
<div class="col-sm-8">
<select id="paperType" name="paperType" class="form-control m-b" >
<option value="1">电气</option>
<option value="2">智能制造机械</option>
<option value="3">java</option>
<option value="4">.net</option>
<option value="5">智能物流机械</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">有效期:</label>
<div class="form-group">
<div class="col-sm-8">
<input type="datetime-local" class="time-input" id="startTime" placeholder="开始时间"
name="startTime" />
<span style="float:left;">-</span>
<input type="datetime-local" class="time-input" id="endTime" placeholder="结束时间"
name="endTime"/>
</div>
</div>
<div class="form-group">
<div class="form-control-static col-sm-offset-9">
<button type="submit" class="btn btn-primary">提交</button>
<button onclick="$.modal.close()" class="btn btn-danger" type="button">关闭</button>
</div>
</div>
</form>
</div>
<div th:include="include::footer"></div>
<script th:src="@{/ajax/libs/iCheck/icheck.min.js}"></script>
<script th:src="@{/ajax/libs/select/select2.js}"></script>
<script>
$("#form-user-add").validate({
rules:{
username:{
required:true,
},
userPhone:{
required:true,
isPhone:true,
},
startTime:{
required:true,
},
endTime:{
required:true,
},
},
messages: {
"loginName": {
remote: "用户已经存在"
},
// "email": {
// remote: "Email已经存在"
// },
// "phoneNumber":{
// remote: "手机号码已经存在"
// }
},
submitHandler:function(form){
add();
}
});
function add() {
debugger
var id = $("input[name='id']").val();
var username = $("input[name='username']").val();
var userPhone = $("input[name='userPhone']").val();
var paperType = $("#paperType").val();
var startTime = $("input[name='startTime']").val();
var endTime = $("input[name='endTime']").val();
$.ajax({
cache : true,
type : "POST",
url : ctx + "exam/answerVerificationCode/addSave",
data : {
"id": id,
"username": username,
"userPhone": userPhone,
"paperType": paperType,
"startTime": startTime.replace("T", " "),
"endTime": endTime.replace("T", " "),
},
async : false,
error : function(request) {
$.modal.alertError("系统错误");
},
success : function(data) {
$.operate.saveSuccess(data);
}
});
}
</script>
</body>
</html>