12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!DOCTYPE html>
- <html lang="zh" xmlns:th="http://www.thymeleaf.org" >
- <head>
- <th:block th:include="include :: header('服务包提成发放失败明细修改')" />
- </head>
- <body>
- <div class="ui-layout-center">
- <form id="form-SFwglServercommissionrewardinfo-edit" class="customize-search-form">
- <div class="customize-form-group-container">
- <input type="hidden" id="id" name="id" th:value="${id}">
- <div class="customize-form-group">
- <label>提成来源:</label>
- <input name="commissionSource" placeholder="提成来源" th:value="${commissionSource}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>奖励类型:</label>
- <input name="rewardType" placeholder="奖励类型" th:value="${rewardType}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>发生时间:</label>
- <input name="occurrenceTime" placeholder="发生时间" th:value="${occurrenceTime}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>服务包订单号:</label>
- <input name="servicePackageOrderNumber" placeholder="服务包订单号" th:value="${servicePackageOrderNumber}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>券核销订单号:</label>
- <input name="voucherRedemptionOrderNumber" placeholder="券核销订单号" th:value="${voucherRedemptionOrderNumber}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>连锁:</label>
- <input name="chain" placeholder="连锁" th:value="${chain}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>门店:</label>
- <input name="store" placeholder="门店" th:value="${store}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>券码:</label>
- <input name="voucherCode" placeholder="券码" th:value="${voucherCode}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>店员工号:</label>
- <input name="staffNumber" placeholder="店员工号" th:value="${staffNumber}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>店员ID:</label>
- <input name="staffID" placeholder="店员ID" th:value="${staffID}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>店员姓名:</label>
- <input name="staffName" placeholder="店员姓名" th:value="${staffName}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>合约ID:</label>
- <input name="contractID" placeholder="合约ID" th:value="${contractID}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>合约单ID:</label>
- <input name="contractOrderID" placeholder="合约单ID" th:value="${contractOrderID}" class="styled-input" type="text">
- </div>
- <div class="customize-form-group">
- <label>状态:</label>
- <input name="status" placeholder="状态" th:value="${status}" class="styled-input" type="text">
- </div>
- </div>
- </form>
- </div>
- <div class="main-content">
- <div class="col-sm-offset-5 col-sm-10">
- <button type="button" class="btn btn-sm btn-primary" onclick="submitHandler()"><i class="fa fa-check"></i>保 存</button>
- <button type="button" class="btn btn-sm btn-danger" onclick="closeItem()"><i class="fa fa-reply-all"></i>关 闭 </button>
- </div>
- </div>
- <th:block th:include="include :: footer" />
- </body>
- </html>
- <script>
- function submitHandler() {
- var prefix = ctx + "fwgl/sfwglservercommissionrewardinfo";
- if ($.validate.form()) {
- var data = $("#form-SFwglServercommissionrewardinfo-edit").serializeArray();
- $.operate.saveTab(prefix + "/sFwglServercommissionrewardinfoEdit", data);
- }
- }
- </script>
|