| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
- <head>
- <th:block 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-customer-add">
- <div class="col-xs-12">
- <div class="form-group">
- <label class="col-sm-3 control-label">客户名:</label>
- <div class="col-sm-8">
- <input name="customerName" class="form-control" type="text">
- </div>
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer" />
- <script th:inline="javascript">
- var prefix = ctx + "business/customer"
- $("#form-customer-add").validate({
- focusCleanup: true
- });
- function submitHandler() {
- if ($.validate.form()) {
- $.operate.save(prefix + "/add", $('#form-customer-add').serialize());
- }
- }
- </script>
- </body>
- </html>
|