add.html 2.24 KB
<!DOCTYPE HTML>
<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="white-bg">
    <div class="wrapper wrapper-content animated fadeInRight ibox-content">
        <form class="form-horizontal m" id="form-container-add">
			<div class="form-group">
				<label class="col-sm-3 control-label">货架号:</label>
				<div class="col-sm-8">
					<input id="shelfNo" name="shelfNo" class="form-control" required type="text">
				</div>
			</div>
			<div class="form-group">
				<label class="col-sm-3 control-label">点位名称:</label>
				<div class="col-sm-8">
					<select required id="positionName" name="positionName" class="form-control" th:with="pointPosition=${@pointPosition.getPositionList()}">
						<option th:each="item : ${pointPosition}" th:text="${item['positionName']}" th:value="${item['positionName']}"></option>
					</select>
				</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 type="text/javascript">
		var prefix = ctx + "task/shelf"
		$("#form-container-add").validate({
			rules:{
                quantity:{
                    required:true,
                    digits:true
                },
			},
			submitHandler: function(form) {
				$.operate.save(prefix + "/add", $('#form-container-add').serialize());
                /*$.ajax({
                    cache : true,
                    type : "POST",
                    url : prefix + "/add",
                    data : {
						"pointPositionType": $("#type option:selected").val(),
                        "quantity": $("input[name='quantity']").val(),
                    },
                    async : false,
                    error : function(request) {
                        $.modal.alertError("请求失败!");
                    },
                    success : function(data) {
                        $.operate.saveSuccess(data);
                    }
                });*/
			}
		});
	</script>
</body>
</html>