123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!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="customize-search-form" id="form-SHyglJfglOrderinfoHxSp-Hx">
- <div class="form-group">
- <label class="col-sm-3 control-label">兑换码:</label>
- <div class="col-sm-8">
- <input class="form-control" type="text" name="exchangeCode" />
- </div>
- </div>
- </form>
- </div>
- <th:block th:include="include :: footer" />
- <script>
- function submitHandler() {
- if ($.validate.form()) {
- add();
- }
- }
- function add() {
- var data = $("#form-SHyglJfglOrderinfoHxSp-Hx").serializeArray();
- $.ajax({
- cache : true,
- type : "POST",
- url : ctx + "hygl/?/?",//待完善接口
- data : data,
- async : false,
- error : function(request) {
- $.modal.alertError("系统错误");
- },
- success : function(data) {
- $.operate.successCallback(data);
- }
- });
- }
- </script>
- </body>
- </html>
|