<!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-subscribe-add"> <div class="form-group"> <label class="col-sm-3 control-label">查询关键字;分割:</label> <div class="col-sm-8"> <input name="suKeys" class="form-control" type="text"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">地名称;分割:</label> <div class="col-sm-8"> <input name="suAreas" class="form-control" type="text"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">用户id:</label> <div class="col-sm-8"> <input name="userId" class="form-control" type="text"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">0为不启用,1为启用:</label> <div class="col-sm-8"> <input name="isTrue" class="form-control" type="text"> </div> </div> </form> </div> <th:block th:include="include :: footer" /> <script th:inline="javascript"> var prefix = ctx + "business/subscribe" $("#form-subscribe-add").validate({ focusCleanup: true }); function submitHandler() { if ($.validate.form()) { $.operate.save(prefix + "/add", $('#form-subscribe-add').serialize()); } } </script> </body> </html>