liuxiaoxu
6 months ago
5 changed files with 95 additions and 0 deletions
@ -0,0 +1,46 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" > |
|||
<head> |
|||
<th:block th:include="include :: header('修改品质管理退换货单')" /> |
|||
<th:block th:include="include :: datetimepicker-css" /> |
|||
</head> |
|||
<body class="white-bg"> |
|||
<div class="wrapper wrapper-content animated fadeInRight ibox-content"> |
|||
<form class="form-horizontal m" id="form-refundsExchanges-edit" th:object="${qualityRefundsExchanges}"> |
|||
<input name="refundsExchangesId" th:field="*{refundsExchangesId}" type="hidden"> |
|||
<div class="form-group"> |
|||
<label class="col-sm-4 control-label">退换货单号:</label> |
|||
<div class="col-sm-8"> |
|||
<input name="refundsExchangesCode" th:field="*{refundsExchangesCode}" class="form-control" type="text"> |
|||
</div> |
|||
</div> |
|||
<div class="form-group"> |
|||
<label class="col-sm-4 control-label">备注:</label> |
|||
<div class="col-sm-8"> |
|||
<textarea name="remark" maxlength="500" class="form-control" rows="3"></textarea> |
|||
</div> |
|||
</div> |
|||
</form> |
|||
</div> |
|||
<th:block th:include="include :: footer" /> |
|||
<th:block th:include="include :: datetimepicker-js" /> |
|||
<script th:inline="javascript"> |
|||
var prefix = ctx + "quality/refundsExchanges"; |
|||
$("#form-refundsExchanges-edit").validate({ |
|||
focusCleanup: true |
|||
}); |
|||
|
|||
function submitHandler() { |
|||
if ($.validate.form()) { |
|||
$.operate.save(prefix + "/closingProcedures", $('#form-refundsExchanges-edit').serialize()); |
|||
} |
|||
} |
|||
|
|||
$("input[name='deliveryInspectionTime']").datetimepicker({ |
|||
format: "yyyy-mm-dd", |
|||
minView: "month", |
|||
autoclose: true |
|||
}); |
|||
</script> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue