add.html 3.87 KB
<!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>