| 1234567891011121314151617181920212223242526272829303132 |
- <!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-modelKind-edit" th:object="${mModelKind}">
- <input name="id" th:field="*{id}" type="hidden">
- <div class="form-group">
- <label class="col-sm-3 control-label is-required">分类名称:</label>
- <div class="col-sm-8">
- <input name="kindName" th:field="*{kindName}" class="form-control" type="text" required>
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer" />
- <script th:inline="javascript">
- var prefix = ctx + "master/modelKind";
- $("#form-modelKind-edit").validate({
- focusCleanup: true
- });
- function submitHandler() {
- if ($.validate.form()) {
- $.operate.save(prefix + "/edit", $('#form-modelKind-edit').serialize());
- }
- }
- </script>
- </body>
- </html>
|