<!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-edit" th:object="${container}"> <input id="id" name="id" th:field="*{id}" type="hidden"> <div class="form-group"> <label class="col-sm-3 control-label">容器编码:</label> <div class="col-sm-8"> <input id="code" name="code" th:field="*{code}" class="form-control" type="text" readonly="true"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">库位编码:</label> <div class="col-sm-8"> <input id="locationCode" name="locationCode" th:field="*{locationCode}" class="form-control" type="text"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">AGV货架:</label> <div class="col-sm-8"> <input id="goodsShelfNo" name="goodsShelfNo" th:field="*{goodsShelfNo}" class="form-control" type="text" > </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">状态:</label> <div class="col-sm-8"> <select name="type" id="status" class="form-control m-b" th:with="dictLabel=${@dict.getType('containerStatus')}"> <option th:each="dict : ${dictLabel}" th:text="${dict['dictLabel']}" th:value="${dict['dictValue']}" th:field="*{status}"></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 + "config/container" $("#form-container-edit").validate({ submitHandler: function(form) { $.ajax({ cache : true, type : "POST", url : prefix + "/edit", data : { "id": $("input[name='id']").val(), "code": $("input[name='code']").val(), "locationCode" : $("input[name='locationCode']").val(), "goodsShelfNo" :$("input[name='goodsShelfNo']").val(), "status" : $("#status option:selected").val(), }, async : false, error : function(request) { $.modal.alertError("请求失败!"); }, success : function(data) { $.operate.saveSuccess(data); } }); } }); </script> </body> </html>