123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!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-notice-add">
- <div class="form-group">
- <label class="col-sm-2 control-label">靓号:</label>
- <div class="col-sm-10">
- <input id="prettyErbanNo" name="prettyErbanNo" class="form-control" type="text" placeholder="请输入靓号" required/>
- </div>
- </div>
- <div class="form-group">
- <label class="col-sm-2 control-label">使用卿卿号:</label>
- <div class="col-sm-10">
- <input id="useErbanNo" name="useErbanNo" class="form-control" type="text" placeholder="请输入使用人卿卿号" />
- </div>
- </div>
- <div class="form-group">
- <label class="col-sm-2 control-label">排序:</label>
- <div class="col-sm-10">
- <input id="seq" name="seq" class="form-control" type="text" placeholder="请输入排序" required/>
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer" />
- <th:block th:include="include :: summernote-js" />
- <script type="text/javascript">
- var prefix = ctx + "users/pretty";
- $("#form-notice-add").validate({
- focusCleanup: true
- });
- function submitHandler() {
- if ($.validate.form()) {
- $.operate.save(prefix + "/add", $('#form-notice-add').serialize());
- }
- }
- </script>
- </body>
- </html>
|