<!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-unit-edit" th:object="${laborUnit}"> 
 | 
            <input name="ids" th:field="*{ids}" type="hidden"> 
 | 
            <div class="form-group">     
 | 
                <label class="col-sm-3 control-label">劳务单位名称:</label> 
 | 
                <div class="col-sm-8"> 
 | 
                    <input name="fullName" th:field="*{fullName}" class="form-control" type="text" required> 
 | 
                </div> 
 | 
            </div> 
 | 
            <div class="form-group">     
 | 
                <label class="col-sm-3 control-label">证书编号:</label> 
 | 
                <div class="col-sm-8"> 
 | 
                    <input name="laborCode" th:field="*{laborCode}" class="form-control" type="text" required> 
 | 
                </div> 
 | 
            </div> 
 | 
            <div class="form-group">     
 | 
                <label class="col-sm-3 control-label">行业范围:</label> 
 | 
                <div class="col-sm-8"> 
 | 
                    <input name="laborRange" th:field="*{laborRange}" 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="laborType" th:field="*{laborType}" 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="datasource" th:field="*{datasource}" class="form-control" type="text" required> 
 | 
                </div> 
 | 
            </div> 
 | 
    
 | 
        </form> 
 | 
    </div> 
 | 
    <th:block th:include="include :: footer" /> 
 | 
    <script type="text/javascript"> 
 | 
        var prefix = ctx + "geo/unit"; 
 | 
        $("#form-unit-edit").validate({ 
 | 
            focusCleanup: true 
 | 
        }); 
 | 
  
 | 
        function submitHandler() { 
 | 
            if ($.validate.form()) { 
 | 
                $.operate.save(prefix + "/edit", $('#form-unit-edit').serialize()); 
 | 
            } 
 | 
        } 
 | 
    </script> 
 | 
</body> 
 | 
</html> 
 |