| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <html xmlns:th="http://www.thymeleaf.org">
- <head>
- <title>私塾家</title>
- <script th:include="sys/common/metaCSS" th:remove="tag"></script>
- <script th:include="sys/common/metaJS" th:remove="tag"></script>
- <script src="sys/js/jquery.validate.min.js" th:src="@{/static/sys/js/jquery.validate.min.js}"></script>
- <script src="sys/js/jquery-validation/messages_zh.js" th:src="@{/static/sys/js/jquery-validation/messages_zh.js}"></script>
- <style>
- .clearfix:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
- .clearfix { display: inline-table; }
- * html .clearfix { height: 1%; }
- .clearfix { display: block; }
- .fl{display:inline;float:left}
- clearfix >control-label-error{display:inline;float:left;marign-left:10px}
- label.control-label-error {
- color: Red;
- }
- .lispan {line-height: 34px;}
-
- .select1{
- width:100%;
- height: 32px;
- line-height: 32px;
- border-top: solid 1px #a7b5bc;
- border-left: solid 1px #a7b5bc;
- border-right: solid 1px #ced9df;
- border-bottom: solid 1px #ced9df;
- opacity:1;
- margin-bottom: 10px;
- }
- </style>
- </head>
- <body>
- <div class="place">
- <span>位置:</span>
- <ul class="placeul">
- <li><a href="#">后台系统管理</a></li>
- <li><a th:href="@{/sys/sales/libStaffingList.html}">销售提成配置</a></li>
- </ul>
- </div>
- <div class="formbody">
- <div class="formtitle"><span th:text="${commission.id} ? '修改提成配置' :'新增提成配置'">新增图书</span></div>
- <form id="submitFrom" method="post" class="form-horizontal form-validate">
- <input type="hidden" name="id" th:if="${commission.id}" th:value="${commission.id}"/>
- <input type="hidden" name="libId" th:value="${commission.libId}"/>
- <ul class="forminfo">
- <li class="clearfix">
- <label>销售人员类型:<b>*</b></label>
- <div class="vocation" style="margin-right: 5px; width: 346px">
- <select class="select1" name="type">
- <option th:each="sort:${sortlist}" th:selected="${commission.type eq sort.code }" th:value="${sort.code}">[[${sort.name}]]</option>
- </select>
- </div>
- </li>
- <li class="clearfix">
- <label>新签提成:<b>*</b></label>
- <input type="text" id="newSign" class="dfinput fl" name="newSign" th:value="${commission.newSign}"/>
- </li>
- <li class="clearfix">
- <label>续签提成:<b>*</b></label>
- <input type="text" id="xSign" class="dfinput fl" name="xSign" th:value="${commission.xSign}"/>
- </li>
- <li>
- <label> </label>
- <button type="submit" class="btn">保存</button>
- <button type="button" class="btn" onclick="window.history.go(-1);">取消</button>
- </li>
- </ul>
- </form>
- </div>
- </body>
- <script type="text/javascript">
- $(function(){
-
-
- $("#submitFrom").validate({
- rules : {
-
- newSign : {
- required : true,
- digits:true,
- min:10
- },
- xSign : {
- required : true,
- digits:true,
- min:10
- }
- },
- messages: {
- newSign : {
- required : "不能为空",
- digits : "只能输入整数"
- },
- xSign : {
- required : "不能为空",
- digits : "只能输入整数"
- }
-
- },
- errorPlacement : function(error, element) {
- error.appendTo(element.parent());
- },
- submitHandler : function(form) {
- roleFrom();
- }
- });
-
- });
- function roleFrom(){
- var url="[[${sysUrl}]]/sys/sales/libCommissionSave";
- var params = $("#submitFrom").serialize();
- $.post(url,params,function(data){
- if(data != null){
- if(data.meta.success){
- layer.msg("操作成功!",{icon:1});
- setTimeout(function(){
- window.location.href ='[[${sysUrl}]]/sys/sales/libCommissionList.html';
- },1000);
- }else{
- layer.msg(data.meta.message,{icon:11});
- }
- }
-
- });
- }
- </script>
- </html>
|